new: Trusted publisher action

main
Raphaël Vinot 2024-11-20 11:34:08 +01:00
parent 4a77dd5732
commit dfc906de8d
1 changed files with 26 additions and 0 deletions

26
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,26 @@
on:
release:
types:
- published
name: release
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/pymispgalaxies
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Poetry
run: python -m pip install --upgrade pip poetry
- name: Build artifacts
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1