Skip to content

Commit

Permalink
make CI: Always fetch tags
Browse files Browse the repository at this point in the history
The fetch-tags option of actions/checkout@v4 does not work
as intended so they are fetched manually instead.
  • Loading branch information
lhoguin committed Sep 19, 2024
1 parent 8376117 commit 022256b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-make-target.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: CHECKOUT REPOSITORY
uses: actions/checkout@v4

- name: FETCH TAGS
run: git fetch --tags

- name: SETUP OTP & ELIXIR
uses: erlef/[email protected]
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-make.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: CHECKOUT REPOSITORY
uses: actions/checkout@v4

- name: FETCH TAGS
run: git fetch --tags

- name: SETUP OTP & ELIXIR
uses: erlef/[email protected]
with:
Expand Down

0 comments on commit 022256b

Please sign in to comment.