From 019c77b3d87e7aada8099f727756c25b426a5d11 Mon Sep 17 00:00:00 2001 From: Marina Ilina Date: Thu, 28 May 2026 15:13:31 +0200 Subject: [PATCH] fix(ci): pass UV_PUBLISH_TOKEN to publish workflow The template update in #61 replaced `secrets: inherit` with explicit secret passthrough but missed UV_PUBLISH_TOKEN, breaking PyPI publishing. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/_package-publish.yml | 2 ++ .github/workflows/ci-cd.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/_package-publish.yml b/.github/workflows/_package-publish.yml index a5c103c..54af4e1 100644 --- a/.github/workflows/_package-publish.yml +++ b/.github/workflows/_package-publish.yml @@ -5,6 +5,8 @@ on: secrets: SLACK_RELEASE_BOT_TOKEN: required: true + UV_PUBLISH_TOKEN: + required: true jobs: diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index c2b3850..214252d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -65,3 +65,4 @@ jobs: packages: read secrets: SLACK_RELEASE_BOT_TOKEN: ${{ secrets.SLACK_RELEASE_BOT_TOKEN }} + UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}