Skip to content

[CI] adapt to python version format #8

[CI] adapt to python version format

[CI] adapt to python version format #8

Workflow file for this run

name: Publish To PyPI
on:
push:
branches: ['main']
jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set environnment package version from commit
run: |
SHORT_SHA=$(echo ${{ github.sha }} | cut -c-6)
echo "PACKAGE_VERSION=0.2.$(date +%Y%m%d).$((16#${SHORT_SHA}))" >> $GITHUB_ENV # use similar convention as Go bindings, but with decimal digits only
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: pip install build twine
- name: Build wheel
run: |
echo "Building version ${PACKAGE_VERSION}"
python -m build
- name: Publish distribution to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload --repository pypi dist/*