Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 92a65a1

Browse files
committed
abc
1 parent 0bda153 commit 92a65a1

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v1
16+
with:
17+
fetch-depth: 0
18+
1619
- name: Build
1720
run: make -j build/linux build/windows
21+
1822
- name: Upload
1923
if: github.ref == 'refs/heads/master'
2024
uses: actions/upload-artifact@v2
@@ -28,10 +32,9 @@ jobs:
2832
steps:
2933
- name: Checkout
3034
uses: actions/checkout@v2
31-
- name: Show git tags
32-
run: git tag
33-
- name: Show git tags
34-
run: git describe --tags
35+
with:
36+
fetch-depth: 0
37+
3538
- name: Build
3639
run: unset CI && make build/macos
3740

@@ -41,6 +44,8 @@ jobs:
4144
steps:
4245
- name: Checkout
4346
uses: actions/checkout@v2
47+
with:
48+
fetch-depth: 0
4449

4550
- name: Install Gon
4651
run: |

0 commit comments

Comments
 (0)