Skip to content

Commit

Permalink
Perform full checkout of repository during release (#3088)
Browse files Browse the repository at this point in the history
Full checkout of repository during release

Otherwise `git describe --tags` won't work correctly, because of the
missing history, causing the canary build to not be published.

Signed-off-by: Kim Christensen <kimworking@gmail.com>
  • Loading branch information
kichristensen authored Apr 29, 2024
1 parent 57b80e2 commit 9f85030
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4.1.0
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: "${{ inputs.GOVERSION }}"
Expand Down

0 comments on commit 9f85030

Please sign in to comment.