Chore: Source VERSION string from pyproject.toml #193
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: Publish Packages to PyPI and TestPyPI | |
# yamllint disable-line rule:truthy | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Output Run ID | |
# yamllint disable-line rule:truthy | |
run: | | |
value=$(cat pyproject.toml | grep 'version = ' | awk '{print $3}' | sed 's:"::g') | |
echo "$value-dev${{ github.run_id }}" > VERSION | |
echo ${{ github.run_id }} | |
- name: Output Run Number | |
run: echo ${{ github.run_number }} | |
- name: Build package | |
run: python -m build | |
- name: Publish package to Test PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ |