Skip to content

Commit

Permalink
rerender
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Apr 2, 2024
1 parent b74b6f1 commit b2ff56c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,4 +316,20 @@ jobs:
BINSTAR_TOKEN: ${{ secrets.BINSTAR_TOKEN }}
FEEDSTOCK_TOKEN: ${{ secrets.FEEDSTOCK_TOKEN }}
STAGING_BINSTAR_TOKEN: ${{ secrets.STAGING_BINSTAR_TOKEN }}
if: matrix.os == 'windows'
if: matrix.os == 'windows'

- name: Upload artifacts to Github
uses: actions/upload-artifact@v2
with:
path: build_artifacts/pypi_wheels
name: ${{ matrix.CONFIG }}

- name: Upload artifacts to Github release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build_artifacts/pypi_wheels/*.whl
tag: ${{ github.ref }}
overwrite: false
file_glob: true
if: startsWith(github.ref, 'refs/tags/')

0 comments on commit b2ff56c

Please sign in to comment.