Skip to content

git action

git action #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*' # Trigger on version tags
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # This is important for poetry-dynamic-versioning
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Build package
run: poetry build
- name: Publish to PyPI
env:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: poetry publish