Skip to content

Commit

Permalink
Continue trying to fix release.yml github action (#13)
Browse files Browse the repository at this point in the history
* chore: manually increment version

* chore: continue fixing release.yml

remove success from PyPI if statement
  • Loading branch information
mdtanker committed Nov 22, 2023
1 parent db9132a commit debe987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ jobs:
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if:
github.ref == 'refs/heads/main' && github.event.action == 'published' &&
needs.release-test-pypi.status == 'success'
if: github.ref == 'refs/heads/main' && github.event.action == 'published'
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
"Typing :: Typed",
]
readme = "README.md"
version = "0.1.0"
version = "0.1.1"

dependencies = [
"numpy",
Expand Down

0 comments on commit debe987

Please sign in to comment.