Skip to content

Commit

Permalink
upload artifact to github even if not deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
bodono committed May 29, 2024
1 parent 9f438c7 commit 789e348
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
pip install wheelhouse/*whl --force-reinstall
pytest
- name: Upload artifacts to github
if: ${{env.DEPLOY == 'True' && startsWith(matrix.os, 'windows')}}
if: ${{ startsWith(matrix.os, 'windows') }}
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
Expand Down Expand Up @@ -184,7 +184,6 @@ jobs:
python -m build -Csetup-args="-Dlink_blas_statically=True" --outdir=wheelhouse
- name: Upload artifacts to github
if: ${{env.DEPLOY == 'True'}}
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
Expand Down

0 comments on commit 789e348

Please sign in to comment.