Skip to content

Bump version v1.0.0b6 -> v1.0.0b7. #9

Bump version v1.0.0b6 -> v1.0.0b7.

Bump version v1.0.0b6 -> v1.0.0b7. #9

Workflow file for this run

name: Publish on PyPI
on:
push:
tags:
# After vMajor.Minor.Patch _anything_ is allowed (without "/") !
- v[0-9]+.[0-9]+.[0-9]+*
jobs:
publish:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install flit
run: pip install flit~=3.4
- name: Build and publish
run: flit publish
env:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.PYPI_TOKEN }}
- uses: softprops/action-gh-release@v0.1.14
name: Create release
with:
files: |
dist/*
generate_release_notes: true