Skip to content

Merge branch 'master' into fb-PWPA-2308-release-0.2.0 #8

Merge branch 'master' into fb-PWPA-2308-release-0.2.0

Merge branch 'master' into fb-PWPA-2308-release-0.2.0 #8

Workflow file for this run

name: deploy
on:
push:
tags:
- "v*"
jobs:
deploy:
if: startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install build
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: |
python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1.12.3
- name: GitHub Release
uses: softprops/action-gh-release@v2
with:
files: dist/*