We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce4f92 commit 17a4a43Copy full SHA for 17a4a43
1 file changed
.github/workflows/build.yml
@@ -156,6 +156,19 @@ jobs:
156
docker compose up --detach --wait
157
docker compose exec app bin/test
158
159
+ - name: Copy out artifacts
160
+ if: ${{ always() }}
161
+ run: |
162
+ docker compose logs > artifacts/docker-compose-services.log
163
+ docker compose config > artifacts/docker-compose.merged.yml
164
+ - name: Upload test report
165
166
+ uses: actions/upload-artifact@v4
167
+ with:
168
+ name: avplayer Test Report (${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }})
169
+ path: artifacts/*
170
+ if-no-files-found: error
171
+
172
push:
173
runs-on: ubuntu-latest
174
needs:
0 commit comments