Skip to content

Commit

Permalink
add the package-upload workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhea committed Sep 17, 2023
1 parent b98bfa3 commit 23e5ad8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/poetry-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This workflow will upload the new flipjump python package to pypi, using poetry-publish, everytime a new release is created.


name: Python package
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.17
with:
pypi_token: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 23e5ad8

Please sign in to comment.