File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 1919 - name : Fetch release branch
2020 run : |
2121 git fetch origin release:release
22+ git fetch origin release-test:release-test
23+ git checkout release-test
24+ git log --oneline release..release-test # Debug: Show commits that differ
25+ git diff release release-test --stat # Debug: Show file differences
2226 git status
2327
2428 - name : Semantic Release
@@ -32,11 +36,13 @@ jobs:
3236 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3337
3438 - name : Create Pull Request
39+ id : cpr
3540 uses : peter-evans/create-pull-request@v7
3641 with :
3742 token : ${{ secrets.GITHUB_TOKEN }}
3843 title : ' chore: Create new release'
3944 base : release
45+ branch : release-pr
4046 delete-branch : true
4147 author : ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
4248 labels : |
You can’t perform that action at this time.
0 commit comments