-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #210 from martinhoyer/publish-fix
Fix PyPI publish step and unify it with rtslib, configshell
- Loading branch information
Showing
1 changed file
with
28 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
name: pypi-release | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
name: pypi-release | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: 'Branch, tag or SHA to checkout' | ||
required: true | ||
default: 'master' | ||
|
||
jobs: | ||
pypi-publish: | ||
name: Upload release to PyPI | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write # Needed for trusted publishing | ||
|
||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/targetcli | ||
permissions: | ||
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | ||
|
||
steps: | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.inputs.ref || github.ref }} | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
|
||
- name: Build a binary wheel and a source tarball | ||
run: | | ||
python -m pip install hatch | ||
hatch build | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |