Skip to content

Commit

Permalink
TO-DROP: force the upload-artifact Action to be used
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Sep 14, 2024
1 parent 766a70c commit 6107ef4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,13 @@ jobs:
curl -Lo /tmp/node.tar.gz $NODE_URL &&
tar -C /__e/node20 -x --strip-components=1 -f /tmp/node.tar.gz
- uses: actions/checkout@v4
- run: ci/install-dependencies.sh
- run: ci/run-build-and-tests.sh
- name: print test failures
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
run: ci/print-test-failures.sh
# - run: ci/install-dependencies.sh
# - run: ci/run-build-and-tests.sh
- name: let it fail
run: echo FAILED_TEST_ARTIFACTS=ci >>$GITHUB_ENV && exit 1
# - name: print test failures
# if: failure() && env.FAILED_TEST_ARTIFACTS != ''
# run: ci/print-test-failures.sh
- name: Upload failed tests' directories
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6107ef4

Please sign in to comment.