We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506e3ac commit df2fd68Copy full SHA for df2fd68
1 file changed
.github/workflows/build.yml
@@ -142,6 +142,21 @@ jobs:
142
run: |
143
docker compose exec app test/test.sh
144
145
+ - name: Copy out artifacts
146
+ if: ${{ always() }}
147
+ run: |
148
+ docker compose cp app:/opt/app/artifacts ./
149
+ docker compose logs > artifacts/docker-compose-services.log
150
+ docker compose config > artifacts/docker-compose.merged.yml
151
+
152
+ - name: Upload the test report
153
154
+ uses: actions/upload-artifact@v4
155
+ with:
156
+ name: iipsrv Build Report (${{ github.run_id }}_${{ github.run_attempt }})
157
+ path: artifacts/*
158
+ if-no-files-found: error
159
160
push:
161
runs-on: ubuntu-latest
162
needs:
0 commit comments