version.txt: update to 0.10.0a0 (#426) #12
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
# This workflow will be triggered when new TAG is pushed. It will create version.txt file with tag name | |
# Then workflow will publish a package to PyPi with version from version.txt | |
name: Upload Python Package | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Set version | |
run: | | |
rm -f version.txt | |
echo ${{ github.ref_name }} > version.txt | |
- name: Test version.txt file | |
run: | | |
if [ ! -f version.txt ]; then | |
echo "version.txt does not exist" | |
exit 1 | |
fi | |
- name: Build package | |
run: python -m build | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |