Skip to content

Commit aabe825

Browse files
committed
fixing release
1 parent 23e689b commit aabe825

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/deploy_to_ghcr_tag_release.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,9 @@ jobs:
4444
git add .
4545
git commit --signoff --message $version
4646
47-
echo "moving tag $version"
48-
git tag --force $version
49-
git push origin $version --force
50-
5147
- name: Create Pull Request
5248
uses: peter-evans/create-pull-request@v7
49+
continue-on-error: true
5350
with:
5451
title: '🚀Update version to ${{ steps.version.outputs.version }}'
5552
body: |
@@ -59,6 +56,12 @@ jobs:
5956
delete-branch: true
6057
labels: 'version-update'
6158
base: 'main'
59+
60+
- name: Move tag ${{ steps.version.outputs.version }} to PR
61+
run: |
62+
echo "moving tag ${{ steps.version.outputs.version }}"
63+
git tag --force ${{ steps.version.outputs.version }}
64+
git push origin ${{ steps.version.outputs.version }} --force
6265
6366
push_to_ghcr:
6467
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)