Skip to content

Commit

Permalink
[pypi] idem
Browse files Browse the repository at this point in the history
  • Loading branch information
fradav committed Apr 25, 2024
1 parent 22169f5 commit fd2409b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
create_release:
if: ! contains(toJSON(github.event.commits.*.message), '[skip-ci]')
if: ${{ !contains(toJSON(github.event.commits.*.message), '[skip-ci]') }}
runs-on: ubuntu-22.04
outputs:
upload_url: ${{ steps.new_release.outputs.upload_url }}
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
path: dist/*.tar.gz
upload_pypi:
needs: [job, build_sdist]
if: contains(toJSON(github.event.commits.*.message), '[pypi]')
if: ${{ contains(toJSON(github.event.commits.*.message), '[pypi]') }}
runs-on: ubuntu-22.04
# upload to PyPI on every tag starting with 'v'
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
Expand Down

0 comments on commit fd2409b

Please sign in to comment.