Skip to content

Commit

Permalink
remove artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
RichieHakim committed Sep 30, 2023
1 parent e922397 commit d1a4cfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,8 @@ jobs:
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release create "v$VERSION" --title "v$VERSION" --notes "Release for version $VERSION" --repo RichieHakim/ROICaT
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
# Upload to GitHub Release using the `gh` CLI.
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
run: >-
gh release upload v$VERSION ${{ github.workspace }}/dist/* --repo ${{ github.repository }}
gh release create "v$VERSION"
--title "v$VERSION"
--notes "Release for version $VERSION. Also available on PyPI: https://pypi.org/project/roicat/$VERSION/"
--repo ${{ github.repository }}
2 changes: 1 addition & 1 deletion roicat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
for pkg in __all__:
exec('from . import ' + pkg)

__version__ = '1.1.22'
__version__ = '1.1.23'

0 comments on commit d1a4cfc

Please sign in to comment.