Skip to content

v0.1.0 - First proper release #1

v0.1.0 - First proper release

v0.1.0 - First proper release #1

Workflow file for this run

# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload Python Package
on:
release:
types: [created]
jobs:
pypi-publish-gaitmap_challenges:
name: Upload gaitmap_challenges release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/gaitmap_challenges
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build package
run: |
cd gaitmap-challenges && poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: gaitmap-challenges/dist/