Skip to content

Commit

Permalink
CI: Try to fix action conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jul 4, 2023
1 parent 2a1ae93 commit 219f026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:

- name: Upload docs
uses: actions/upload-artifact@v3
if: ${{ matrix.extra_hash == '-docs' }}
if: matrix.extra_hash == '-docs'
with:
name: website_html
path: doc/html
Expand All @@ -203,7 +203,7 @@ jobs:

- name: Upload Wheel
uses: actions/upload-artifact@v3
if: ${{ matrix.env.STATIC_DEPS == true || matrix.env.STATIC_DEPS == 'true' }}
if: matrix.env.STATIC_DEPS == true || matrix.env.STATIC_DEPS == 'true'
with:
name: wheels-${{ runner.os }}
path: dist/*.whl
Expand Down

0 comments on commit 219f026

Please sign in to comment.