Skip to content

Commit

Permalink
Add CD
Browse files Browse the repository at this point in the history
Version was bumped to test the PyPI publish pipeline.
  • Loading branch information
Giuseppe Lumia committed Nov 19, 2021
1 parent 8ef49cc commit cbcb6cd
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: publish

on:
release:
types: [published]

jobs:
build:
name: PyPI Upload
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Build wheels
run: |
poetry build
- name: Upload to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: |
poetry config pypi-token.pypi dummy # Necessary otherways poetry doesn't
# look for the token in the environment variables.
poetry publish

0 comments on commit cbcb6cd

Please sign in to comment.