Skip to content

Commit

Permalink
fetch tags in submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Oct 30, 2023
1 parent 0e39abd commit d089e1f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
- uses: "actions/checkout@v3"
with:
submodules: 'true'
# checkout never fetches tags for submodules so do it manually
- name: fetch submodule tags
run: |
git submodule foreach --recursive 'git fetch --tags'
- uses: "actions/setup-python@v4"
with:
python-version: "3.11"
Expand Down

0 comments on commit d089e1f

Please sign in to comment.