Skip to content

bump version → 0.4.0 #6

bump version → 0.4.0

bump version → 0.4.0 #6

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*.*.*"
jobs:
publish_pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Build
run: make build
- name: Publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: make publish