We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82932b0 commit 32e5be6Copy full SHA for 32e5be6
.github/workflows/e2e.yml
@@ -88,10 +88,16 @@ jobs:
88
curl ${{ env.E2E_APP_HOST }}:5000 && sleep 35s
89
resp=$(spp-cli -a change-me get-instruments) && [[ $resp == "[]" ]] && echo $resp || (echo $resp && exit 1)
90
91
- - name: Docker logs
92
- run: cd e2e && docker-compose logs -t --tail="all"
+ - run: ./gradlew composeLogs
93
if: ${{ always() }}
94
+ - name: Upload docker logs artifact
95
+ if: ${{ always() }}
96
+ uses: actions/upload-artifact@v2
97
+ with:
98
+ name: docker-logs
99
+ path: ./build/containers-logs
100
+
101
- name: Remove Old Release Drafts
102
if: github.ref == 'refs/heads/master'
103
env:
0 commit comments