Skip to content

Commit

Permalink
Fix cd-pypi github action (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandorkertesz authored May 28, 2024
1 parent a11025a commit fc53d1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cd-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ name: cd


on:
push: {}

release:
types: [created]
push:
branches:
- main

jobs:
deploy:
if: ${{ github.event_name == 'release' }}
# if: ${{ github.ref_type == 'tag' }}
if: ${{ github.ref_type == 'branch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit fc53d1e

Please sign in to comment.