Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Mar 11, 2024
1 parent e054da1 commit e97a91f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 747 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,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: true
file_glob: true
if: startsWith(github.ref, 'refs/tags/')
Loading

0 comments on commit e97a91f

Please sign in to comment.