From b319027cefb60131dfddb61a959a173181b5c282 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Tue, 13 Jan 2026 14:01:43 +0800 Subject: [PATCH] WIP --- .github/workflows/beta-release.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml index 48cc2bb70..bf89510f3 100644 --- a/.github/workflows/beta-release.yml +++ b/.github/workflows/beta-release.yml @@ -44,13 +44,9 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - # Configure git to use the GitHub token for authentication - git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" # Delete local release branch if it exists git branch -D release || true - # Create new release branch from current HEAD (master) git checkout -b release - # Force push to remote (creates or updates the branch) git push origin release --force - name: Install dependencies