Skip to content

Bump version: 0.0.0 → 0.1.0 #2

Bump version: 0.0.0 → 0.1.0

Bump version: 0.0.0 → 0.1.0 #2

Workflow file for this run

name: Publish
on:
push:
tags:
- "*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
- name: Install dependencies
uses: .github/actions/install
- name: Build the package
run: python -m build
- name: Publish the package
uses: pypa/gh-action-pypi-publish@release/v1
with:
token: ${{ secrets.PYPI_TOKEN }}