Skip to content

Commit

Permalink
fixing tag fetching, refs #3, see actions/checkout#290
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Dec 1, 2020
1 parent 69f85e0 commit 5c36338
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
uses: actions/checkout@v2
with:
path: sumo
fetch-depth: 0

- name: Fetching SUMO tags
run: |
cd sumo
git fetch --prune --unshallow
git fetch --tags --force
- name: Preparing Build System
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
uses: actions/checkout@v2
with:
path: sumo
fetch-depth: 0

- name: Fetching SUMO tags
run: |
cd sumo
git fetch --prune --unshallow
git fetch --tags --force
- name: Preparing Build System
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
uses: actions/checkout@v2
with:
path: sumo
fetch-depth: 0

- name: Fetching SUMO tags
run: |
cd sumo
git fetch --prune --unshallow
git fetch --tags --force
- name: Cloning SUMO Libraries
uses: actions/checkout@v2
Expand Down

0 comments on commit 5c36338

Please sign in to comment.