Publish Release #9
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 Release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
required: true | |
description: "Version to build (1.2.3)" | |
to_testpypi: | |
type: boolean | |
required: true | |
default: true | |
description: "use testpypi and not push tag" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Validate version | |
shell: bash | |
run: | | |
pip install --upgrade pip packaging | |
python3 - <<END | |
from packaging.version import parse | |
if not parse("${{ inputs.version }}"): | |
exit(1) | |
END | |
- name: Validate tags | |
shell: bash | |
run: | | |
new_tag=v${{ inputs.version }} | |
echo new_tag: $new_tag | |
git pull --tags | |
# if tag exists, returns 0 (and ret doesn't get defined) | |
git rev-parse $new_tag >& /dev/null|| ret=$? | |
if [[ -z $ret ]]; then | |
echo "Error: Git tag $new_tag already exists!" | |
exit 1 | |
fi | |
echo "new_tag=${new_tag}" >> $GITHUB_ENV | |
- name: update version | |
shell: bash | |
run: | | |
echo "__version__ = '${{ inputs.version }}'" > sony_custom_layers/version.py | |
echo "print sony_custom_layers/version.py" | |
cat sony_custom_layers/version.py | |
- name: Build wheel | |
shell: bash | |
run: | | |
pip install build twine | |
python -m build --wheel | |
- name: Publish package pypi | |
if: inputs.to_testpypi == false | |
shell: bash | |
run: | | |
twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_API_KEY }} | |
git tag ${{ env.new_tag }} | |
git push origin ${{ env.new_tag }} | |
- name: Publish package testpypi | |
if: inputs.to_testpypi == true | |
shell: bash | |
run: | | |
twine upload --repository testpypi dist/* -u __token__ -p ${{ secrets.TEST_PYPI_API_KEY }} | |