bumped to release 1.2.6 #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: checkout | |
run: git fetch --prune --unshallow | |
- name: install environment | |
run: pip install pipenv && pipenv sync -d | |
- name: build | |
run: pipenv run make dist | |
- name: upload to pypi | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{secrets.TWINE_PASSWORD }} | |
packages_dir: dist/ |