Skip to content

Commit

Permalink
Merge pull request #136 from aig-upf/devel
Browse files Browse the repository at this point in the history
Fix pypi publishing workflow
  • Loading branch information
gfrances authored Apr 7, 2022
2 parents ba41346 + 8c538d9 commit 9b695a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:

# We'll first do a test upload, and only if successful do the real upload
- name: Publish package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1.5.0
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.5.0
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated
### Fixed

## [0.8.1] 2022-04-07
### Fixed
- Fixed pypi publishing workflow.

## [0.8.0] 2022-04-07
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/tarski/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

__version_info__ = (0, 8, 0)
__version_info__ = (0, 8, 1)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 9b695a4

Please sign in to comment.