Skip to content

Commit

Permalink
Merge pull request #24 from m3brown/github-actions
Browse files Browse the repository at this point in the history
Add github action to publish on tag
  • Loading branch information
m3brown committed Dec 4, 2021
2 parents cefe14c + 4604129 commit 96da8f4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
@@ -0,0 +1,14 @@
name: Python package
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.9
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 96da8f4

Please sign in to comment.