Skip to content

Commit e6e2d96

Browse files
fix
1 parent 83720be commit e6e2d96

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/github-actions-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
git checkout origin/master
2727
git merge upstream/master
2828
git push origin HEAD:master --force
29-
git push origin --tags
29+
git pull --tags -f
30+
git push --tags
3031
- name: Checkout Fork
3132
uses: actions/checkout@v3
3233
with:
@@ -42,5 +43,6 @@ jobs:
4243
git checkout origin/master
4344
git merge upstream/master
4445
git push origin HEAD:master --force
45-
git push origin --tags
46+
git pull --tags -f
47+
git push --tags
4648
- run: echo "The fork was updated"

0 commit comments

Comments
 (0)