Skip to content

bump version 10.0.1.9 (#26) #7

bump version 10.0.1.9 (#26)

bump version 10.0.1.9 (#26) #7

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*.*"
jobs:
release:
name: "release ${{github.ref_name}}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.4.2"
- name: publish
run: |
poetry build -f wheel
poetry publish -u __token__ -p ${{ secrets.PYPI_TOKEN }}