Skip to content

Commit

Permalink
chore(ci): fix issue with checkout action (#306)
Browse files Browse the repository at this point in the history
(cherry picked from commit f6dbfb1)
  • Loading branch information
johnstcn committed Aug 8, 2024
1 parent 8b7974b commit 65f2289
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true

# Workaround for actions/checkout#1467
- name: Fetch tags
run: |
git fetch --tags --depth 1 --force
- name: Echo Go Cache Paths
id: go-cache-paths
Expand Down

0 comments on commit 65f2289

Please sign in to comment.