From 63c712de0bf2c2cddc913fd999f68552866dcc7f Mon Sep 17 00:00:00 2001 From: Andreas Erdes Date: Sat, 7 Jun 2025 19:42:24 +0200 Subject: [PATCH] build: Add missing GITHUB_TOKEN for manifest bump --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5a8425..b8c382a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,6 +52,8 @@ jobs: - name: Install npm dependencies run: npm ci - name: Update version in manifest files + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | npx semantic-release -d > dry-run.txt NEXT_VERSION=$(awk '/The next release version is/{print $NF}' dry-run.txt)