release(client): v2.0.0 (#124) #44
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: Deploy Python API client to PyPI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'python/**' | |
tags: | |
- '*' | |
jobs: | |
check-version: | |
name: Check if the version has been updated | |
outputs: | |
has_changed: ${{ steps.check.outputs.has_changed }} | |
version: ${{ steps.versions.outputs.new_version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- id: versions | |
run: | | |
NEW_VERSION=$(grep -m 1 version ./python/pyproject.toml | tr -s ' ' | tr -d '"' | tr -d "'" | cut -d' ' -f3) | |
echo "new_version=${NEW_VERSION}" >> $GITHUB_OUTPUT | |
git checkout HEAD^ | |
PREV_VERSION=$(grep -m 1 version ./python/pyproject.toml | tr -s ' ' | tr -d '"' | tr -d "'" | cut -d' ' -f3) | |
echo "prev_version=${PREV_VERSION}" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: check | |
with: | |
previous_version: ${{ steps.versions.outputs.prev_version }} | |
new_version: ${{ steps.versions.outputs.new_version }} | |
build-n-publish: | |
name: Build and deploy Python API client to PyPI | |
needs: check-version | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: python | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install pypa/build | |
run: >- | |
python3 -m | |
pip install | |
build | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: >- | |
python3 -m | |
build | |
--sdist | |
--wheel | |
--outdir dist/ | |
. | |
# - name: Deploy API client to Test PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
# repository-url: https://test.pypi.org/legacy/ | |
# packages-dir: python/dist | |
- name: Deploy API client to PyPI | |
if: ${{ needs.check-version.outputs.has_changed == 'true' }} | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
packages-dir: python/dist |