From 5484bb46ded1f2ba7b8d5c999d3f93c57faaf376 Mon Sep 17 00:00:00 2001 From: Joao Daher Date: Mon, 9 Dec 2024 12:32:33 -0300 Subject: [PATCH] ci: update env var that pushes a new release --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ca3ef60..00ba54a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,8 +41,8 @@ jobs: if: ${{ steps.versioning.outputs.should_release == 'true' }} run: gh release create ${{ steps.versioning.outputs.package_version }} --generate-notes env: - GITHUB_TOKEN: ${{ secrets.gh_token }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Build & Publish package if: ${{ steps.versioning.outputs.should_release == 'true' }} run: | - uv build + make publish