Skip to content

Commit

Permalink
fix fetch tags in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ste93ste committed Oct 10, 2024
1 parent 703cab0 commit 93577a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags') || !contains(github.event.head_commit.message, '[skip ci]') }}

steps:
- name: Checkout code
- uses: actions/checkout@v4
with:
fetch-tags: true

- name: Checkout submodules
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: true

- name: Set up python versions ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: true

- name: Checkout submodules
run: |
Expand Down

0 comments on commit 93577a5

Please sign in to comment.