Skip to content

Commit

Permalink
Fixing conditional in GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbrbr committed Jan 13, 2025
1 parent 07fd74b commit b8d0338
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ jobs:
python3 js/src/tests/parse_output.py
- name: Upload Report
if: ${{ matrix.mozconfig }} == "Base"
uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
if: (${{ matrix.mozconfig }} == "Base") && (success() || failure()) # run this step even if previous step failed
with:
name: test-results
path: build/jstest_output.xml

0 comments on commit b8d0338

Please sign in to comment.