You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2023. It is now read-only.
if [ -f .tox/$TOX_ENV/Dockertags ]; then CONTAINERS=$(docker create $(tail -1 .tox/$TOX_ENV/Dockertags)); else CONTAINERS=$(docker ps -q -a); fi
61
+
for CONTAINER in $CONTAINERS; do for ARTIFACT in /sage/logs; do docker cp $CONTAINER:$ARTIFACT artifacts/$LOGS_ARTIFACT_NAME && HAVE_LOG=1; done; if [ -n "$HAVE_LOG" ]; then break; fi; done
62
+
if: always()
63
+
- uses: actions/upload-artifact@v1
64
+
with:
65
+
path: artifacts
66
+
name: ${{ env.LOGS_ARTIFACT_NAME }}
67
+
if: always()
68
+
- name: Print out logs for immediate inspection
69
+
# and markup the output with GitHub Actions logging commands
0 commit comments