Skip to content

Commit

Permalink
Trigger a build on every push but push to pypi only on release
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Jun 26, 2024
1 parent 6990a9f commit 5b51e65
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,28 @@ name: pypi-publish

on:
release:
types: [ published ]
types:
- published
push:
branches:
- main
workflow_dispatch:

jobs:
pypi-publisher:
runs-on: thevickypedia-lite
steps:
- name: Set dry-run
run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
echo "::notice title=DryRun::Setting dry run to true for '${{ github.event_name }}' event"
echo "dry_run=true" >> $GITHUB_ENV
else
echo "::notice title=DryRun::Setting dry run to false for '${{ github.event_name }}' event"
echo "dry_run=false" >> $GITHUB_ENV
fi
- uses: thevickypedia/pypi-publisher@v3
env:
token: ${{ secrets.PYPI_TOKEN }}
with:
dry-run: ${{ env.dry_run }}

0 comments on commit 5b51e65

Please sign in to comment.