Skip to content

Commit

Permalink
Add publish_pypi action (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kitagawa-hr authored May 18, 2021
1 parent 3252123 commit 4a6c4cd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: publish_pypi

on:
release:
types: created

jobs:
release:
name: Publish to PyPI
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"

- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.1.6

- name: Build
run: poetry build

- name: Upload
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish

0 comments on commit 4a6c4cd

Please sign in to comment.