Skip to content

Commit 022256b

Browse files
committed
make CI: Always fetch tags
The fetch-tags option of actions/checkout@v4 does not work as intended so they are fetched manually instead.
1 parent 8376117 commit 022256b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/test-make-target.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- name: CHECKOUT REPOSITORY
2727
uses: actions/checkout@v4
2828

29+
- name: FETCH TAGS
30+
run: git fetch --tags
31+
2932
- name: SETUP OTP & ELIXIR
3033
uses: erlef/[email protected]
3134
with:

.github/workflows/test-make.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
- name: CHECKOUT REPOSITORY
3535
uses: actions/checkout@v4
3636

37+
- name: FETCH TAGS
38+
run: git fetch --tags
39+
3740
- name: SETUP OTP & ELIXIR
3841
uses: erlef/[email protected]
3942
with:

0 commit comments

Comments
 (0)