Skip to content

Commit

Permalink
Merge pull request #210 from martinhoyer/publish-fix
Browse files Browse the repository at this point in the history
Fix PyPI publish step and unify it with rtslib, configshell
  • Loading branch information
maurizio-lombardi authored Dec 18, 2024
2 parents 474edd5 + b2821f1 commit 474af6f
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions .github/workflows/publish.yml
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

0 comments on commit 474af6f

Please sign in to comment.