Skip to content

Commit 5c36338

Browse files
committed
fixing tag fetching, refs #3, see actions/checkout#290
1 parent 69f85e0 commit 5c36338

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ jobs:
3232
uses: actions/checkout@v2
3333
with:
3434
path: sumo
35+
fetch-depth: 0
3536

3637
- name: Fetching SUMO tags
3738
run: |
3839
cd sumo
39-
git fetch --prune --unshallow
40+
git fetch --tags --force
4041
4142
- name: Preparing Build System
4243
run: |

.github/workflows/build-macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
uses: actions/checkout@v2
1919
with:
2020
path: sumo
21+
fetch-depth: 0
2122

2223
- name: Fetching SUMO tags
2324
run: |
2425
cd sumo
25-
git fetch --prune --unshallow
26+
git fetch --tags --force
2627
2728
- name: Preparing Build System
2829
run: |

.github/workflows/build-windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ jobs:
2626
uses: actions/checkout@v2
2727
with:
2828
path: sumo
29+
fetch-depth: 0
2930

3031
- name: Fetching SUMO tags
3132
run: |
3233
cd sumo
33-
git fetch --prune --unshallow
34+
git fetch --tags --force
3435
3536
- name: Cloning SUMO Libraries
3637
uses: actions/checkout@v2

0 commit comments

Comments
 (0)