Skip to content

Commit b345a86

Browse files
Fix publishing snapshots (#117)
1 parent 5a46a78 commit b345a86

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
steps:
6767
- name: Checkout Repository
6868
uses: actions/checkout@v4
69+
with:
70+
fetch-depth: 0
6971

7072
- name: Cache Gradle
7173
uses: actions/cache@v4

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v4
1515
with:
16-
fetch-tags: true
16+
fetch-depth: 0
1717

1818
- name: Cache Gradle
1919
uses: actions/cache@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v4
1515
with:
16-
fetch-tags: true
16+
fetch-depth: 0
1717

1818
- name: Cache Gradle
1919
uses: actions/cache@v4

0 commit comments

Comments
 (0)