Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed May 21, 2024
1 parent 447ce11 commit ccfcc93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uv pip install build --system
- run: uv pip freeze
- if: ${{ github.event != 'push' }}
- if: ${{ github.event_name != 'push' }}
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
Expand All @@ -40,5 +40,5 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python -m build --outdir dist/ .
- name: Publish distribution to PyPI
if: ${{ github.event != 'push' || startsWith(github.ref, 'refs/tags') }}
if: ${{ github.event_name != 'push' || startsWith(github.ref, 'refs/tags') }}
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit ccfcc93

Please sign in to comment.