Dev -> master (#68) #2
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
# This workflow will generate a release distribution and upload it to PyPI | |
name: Publish Build and GitHub Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
tag_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Version | |
run: | | |
VERSION=$(python setup.py --version) | |
echo "VERSION=${VERSION}" >> $GITHUB_ENV | |
- uses: ncipollo/release-action@v1 | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
tag: ${{env.VERSION}} | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
- name: Install Build Tools | |
run: | | |
python -m pip install build wheel | |
- name: Build Distribution Packages | |
run: | | |
python setup.py bdist_wheel | |
- name: Publish to Test PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{secrets.PYPI_TOKEN}} |