Skip to content

Commit

Permalink
Merge pull request #358 from machow/feat-a2
Browse files Browse the repository at this point in the history
fix CI for releases
  • Loading branch information
machow authored Dec 18, 2021
2 parents 8c55e5e + cc3144a commit 44b291c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
# test deploy ----
- name: "Test Deploy to PyPI"
uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith('TEST', github.event.release.name)
if: startsWith(github.event.release.name, 'TEST')
with:
user: __token__
password: ${{ secrets.PYPI_TEST_API_TOKEN }}
Expand All @@ -131,7 +131,7 @@ jobs:
# prod deploy ----
- name: "Deploy to PyPI"
uses: pypa/gh-action-pypi-publish@master
if: "!startsWith('TEST', github.event.release.name)"
if: "!startsWith(github.event.release.name, 'TEST')"
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion siuba/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# version ---------------------------------------------------------------------
__version__ = "0.0.25"
__version__ = "1.0.0a2"

# default imports--------------------------------------------------------------
from .siu import _, Lam
Expand Down

0 comments on commit 44b291c

Please sign in to comment.