Skip to content

Commit 93ee76f

Browse files
committed
Duplicate fetch tags from Stable V4.4 branch
1 parent 98c4ea8 commit 93ee76f

File tree

10 files changed

+40
-20
lines changed

10 files changed

+40
-20
lines changed

.github/workflows/android-linux-qt6.6.3.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ jobs:
5353
fetch-depth: 1
5454
fetch-tags: false
5555

56-
- name: Fetch tags
57-
run: git fetch --tags
56+
- name: Get all tags for correct version determination
57+
working-directory: ${{ github.workspace }}
58+
run: |
59+
git fetch --all --tags -f --depth 1
5860
5961
- name: Initial Setup
6062
uses: ./.github/actions/common

.github/workflows/android-linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ jobs:
5353
fetch-depth: 1
5454
fetch-tags: false
5555

56-
- name: Fetch tags
57-
run: git fetch --tags
56+
- name: Get all tags for correct version determination
57+
working-directory: ${{ github.workspace }}
58+
run: |
59+
git fetch --all --tags -f --depth 1
5860
5961
- name: Initial Setup
6062
uses: ./.github/actions/common

.github/workflows/android-macos.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ jobs:
5252
fetch-depth: 1
5353
fetch-tags: false
5454

55-
- name: Fetch tags
56-
run: git fetch --tags
55+
- name: Get all tags for correct version determination
56+
working-directory: ${{ github.workspace }}
57+
run: |
58+
git fetch --all --tags -f --depth 1
5759
5860
- name: Initial Setup
5961
uses: ./.github/actions/common

.github/workflows/android-windows.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ jobs:
5353
fetch-depth: 1
5454
fetch-tags: false
5555

56-
- name: Fetch tags
57-
run: git fetch --tags
56+
- name: Get all tags for correct version determination
57+
working-directory: ${{ github.workspace }}
58+
run: |
59+
git fetch --all --tags -f --depth 1
5860
5961
- name: Initial Setup
6062
uses: ./.github/actions/common

.github/workflows/custom.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ jobs:
4646
fetch-depth: 1
4747
fetch-tags: false
4848

49-
- name: Fetch tags
50-
run: git fetch --tags
49+
- name: Get all tags for correct version determination
50+
working-directory: ${{ github.workspace }}
51+
run: |
52+
git fetch --all --tags -f --depth 1
5153
5254
- name: Initial Setup
5355
uses: ./.github/actions/common

.github/workflows/docker-linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ jobs:
3838
fetch-depth: 1
3939
fetch-tags: false
4040

41-
- name: Fetch tags
42-
run: git fetch --tags
41+
- name: Get all tags for correct version determination
42+
working-directory: ${{ github.workspace }}
43+
run: |
44+
git fetch --all --tags -f --depth 1
4345
4446
- run: chmod a+x ./deploy/docker/run-docker-ubuntu.sh
4547

.github/workflows/ios.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ jobs:
3232
fetch-depth: 1
3333
fetch-tags: false
3434

35-
- name: Fetch tags
36-
run: git fetch --tags
35+
- name: Get all tags for correct version determination
36+
working-directory: ${{ github.workspace }}
37+
run: |
38+
git fetch --all --tags -f --depth 1
3739
3840
- name: Initial Setup
3941
uses: ./.github/actions/common

.github/workflows/linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ jobs:
4949
fetch-depth: 1
5050
fetch-tags: false
5151

52-
- name: Fetch tags
53-
run: git fetch --tags
52+
- name: Get all tags for correct version determination
53+
working-directory: ${{ github.workspace }}
54+
run: |
55+
git fetch --all --tags -f --depth 1
5456
5557
- name: Initial Setup
5658
uses: ./.github/actions/common

.github/workflows/macos.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ jobs:
4646
fetch-depth: 1
4747
fetch-tags: false
4848

49-
- name: Fetch tags
50-
run: git fetch --tags
49+
- name: Get all tags for correct version determination
50+
working-directory: ${{ github.workspace }}
51+
run: |
52+
git fetch --all --tags -f --depth 1
5153
5254
- name: Initial Setup
5355
uses: ./.github/actions/common

.github/workflows/windows.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ jobs:
4848
fetch-depth: 1
4949
fetch-tags: false
5050

51-
- name: Fetch tags
52-
run: git fetch --tags
51+
- name: Get all tags for correct version determination
52+
working-directory: ${{ github.workspace }}
53+
run: |
54+
git fetch --all --tags -f --depth 1
5355
5456
- name: Initial Setup
5557
uses: ./.github/actions/common

0 commit comments

Comments
 (0)