Skip to content

Release

Release #7

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- 'v*'
permissions:
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
shell: bash
- uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: "x64"
cache: "poetry"
- run: poetry install
shell: bash
- name: Publish package
run: |
poetry publish --build --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
shell: bash