Skip to content

Commit

Permalink
👷 Fix GHA release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalkrupinski committed Oct 27, 2024
1 parent 304d7e7 commit 653ad86
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# .github/workflows/publish-to-pypi.yml

name: Publish to PyPI

on:
release:
types:
- published
workflow_dispatch:
inputs:
tag_name:
required: true
description: Tag name

jobs:
publish_pypi:
Expand All @@ -14,11 +17,16 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: "refs/tags/${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name || github.event.release.tag_name }}"

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

- name: Build Package
run: uv build

- name: Publish Package
run: uv publish
run: uv publish --trusted-publishing always

0 comments on commit 653ad86

Please sign in to comment.