v0.0.79 #2
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: Deploy package to PyPI | |
############################################################################### | |
on: | |
release: | |
types: [published] | |
############################################################################### | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.11 | |
- name: Update version in pyproject.toml from current git tag | |
run: >- | |
sed -i "s/0\\.0\\.0\\.dev0/${GITHUB_REF/refs\/tags\/v/}/g" pyproject.toml | |
- run: | | |
pip install build | |
python -m build | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./dist | |
deploy: | |
needs: [build] | |
environment: pypi | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v3 | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages_dir: artifact/ |