Skip to content

Commit

Permalink
[FIX] publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorreia11 committed Feb 12, 2025
1 parent 6b5937d commit e3303ce
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: Publish to PyPI.org
on:
release:
types: [published]
workflow_dispatch: # Add this to allow manual triggering
workflow_run:
workflows: ["Build"]
types:
- completed
workflow_dispatch: # Allows manual triggering

jobs:
pypi:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down

0 comments on commit e3303ce

Please sign in to comment.