Skip to content

Commit

Permalink
Added publish to pypi action
Browse files Browse the repository at this point in the history
  • Loading branch information
noamgat committed Oct 10, 2023
1 parent 48d0731 commit f70b57c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Publish to PyPI
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 comments on commit f70b57c

Please sign in to comment.