checkout
checkout copied to clipboard
`fetch-tags: true` doesn't work
- uses: actions/checkout@v4
with:
fetch-tags: true
==> But this doesn't fetch all the tags. I have to use
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
For it to retrieve everything.
Same problem here