2.4.0 - The happy new year release #15
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: PyPI Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Pull all release assets | |
uses: robinraju/[email protected] | |
with: | |
releaseId: ${{ github.event.release.id }} | |
fileName: "*" | |
tarBall: false | |
zipBall: false | |
out-file-path: "dist" | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |