Skip to content

Commit

Permalink
bug(ci): fix broken release job (#10324)
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Koops <jonkoops@gmail.com>
  • Loading branch information
jonkoops authored Apr 30, 2024
1 parent 07e0116 commit 6163bd6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
steps:
- name: Check out project
uses: actions/checkout@v4
with:
fetch-depth: 0
# Needs to be an admin token to get around branch protection.
token: ${{ secrets.GH_TOKEN_REDALLEN }}

# Fetches all tags from 'origin' and updates local tags, only fetches the latest commit.
- name: Fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: Set up and build project
uses: ./.github/actions/setup-project
Expand Down

0 comments on commit 6163bd6

Please sign in to comment.