Skip to content

Commit 98987a5

Browse files
committed
force updating tags when creating release
1 parent 4a71912 commit 98987a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/latest_game_archive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: "Creating the archive"
2424
run: |
25-
git fetch -t && ./utils/archive.sh
25+
git fetch --tags --force && ./utils/archive.sh
2626
2727
- uses: "marvinpinto/action-automatic-releases@latest"
2828
with:

.github/workflows/tag_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
2121
- name: "Creating the archive"
2222
run: |
23-
git fetch -t && ./utils/archive.sh
23+
git fetch --tags --force && ./utils/archive.sh
2424
2525
- uses: "marvinpinto/action-automatic-releases@latest"
2626
with:

0 commit comments

Comments
 (0)