From 807062a513ba2d2ab8d23feaeabd320b414c3925 Mon Sep 17 00:00:00 2001 From: BasudevBharatBhushan Date: Wed, 21 May 2025 00:00:22 +0530 Subject: [PATCH] update-workflow --- .github/workflows/release-and-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index 5dbc5e1..ab201b9 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -34,7 +34,7 @@ jobs: run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" - git checkout -b release-branch + git checkout -b release-main - name: Run semantic-release env: @@ -44,7 +44,7 @@ jobs: semantic-release publish - name: Push release branch - run: git push origin release-branch + run: git push origin release-main - name: Create PR to main env: @@ -52,7 +52,7 @@ jobs: run: | gh pr create \ --base main \ - --head release-branch \ + --head release-main \ --title "Automated Release Updates" \ --body "This pull request contains updates from the semantic-release process." || true