From bb4defe5e69aac4e85a5af62a4a2d0745ab39fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Catriel=20M=C3=BCller?= Date: Fri, 27 Feb 2026 11:01:43 -0300 Subject: [PATCH] fix(ci): add GH_REPO env var to publish workflow steps --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a7ea159d35b..70ce116ba3a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -50,6 +50,7 @@ jobs: ./script/version.ts env: GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.repository }} KILO_BUMP: ${{ inputs.bump }} KILO_VERSION: ${{ inputs.version }} KILO_API_KEY: ${{ secrets.KILO_API_KEY }} @@ -312,6 +313,7 @@ jobs: env: KILO_VERSION: ${{ needs.version.outputs.version }} KILO_RELEASE: ${{ needs.version.outputs.release }} + GH_REPO: ${{ github.repository }} AUR_KEY: ${{ secrets.AUR_KEY }} GITHUB_TOKEN: ${{ steps.committer.outputs.token }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}