feat!: update vrs 2.0-alpha models (#257) #41
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: Upload tagged commit to PyPI | |
on: | |
push: | |
tags: | |
- '*.*.**' | |
jobs: | |
get_branch: | |
runs-on: ubuntu-latest | |
outputs: | |
branch_name: ${{ steps.get_branch_name.outputs.name }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get branch name | |
id: get_branch_name | |
run: | | |
raw=$(git branch -r --contains ${{ github.ref }}) | |
branch=${raw##*/} | |
echo "::set-output name=name::$branch" | |
release: | |
runs-on: ubuntu-latest | |
needs: get_branch | |
if: needs.get_branch.outputs.branch_name == '2-alpha' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build | |
run: python3 setup.py sdist bdist_wheel | |
- name: PyPI test | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
- name: PyPI publish | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |