From ee579654d601818bc0d5199dc7451dfa52995c3a Mon Sep 17 00:00:00 2001 From: alldoami Date: Mon, 7 Feb 2022 11:15:31 -0800 Subject: [PATCH 1/2] fix: Release tag --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c9dd6255a..677af5f3d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,11 @@ jobs: changelog-types: ${{ steps.configure-changelog.outputs.result }} token: ${{ steps.generate_token.outputs.token }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v2' + # we need to fetch all history and tags + # so we build the proper version + with: + fetch-depth: 0 if: ${{ steps.release.outputs.release_created }} - uses: actions/setup-go@v2 From 449eb426ddf521049b40ad9f6868904b0819793f Mon Sep 17 00:00:00 2001 From: Allison Doami Date: Mon, 7 Feb 2022 11:21:02 -0800 Subject: [PATCH 2/2] Update .github/workflows/release.yml Co-authored-by: Eduardo Lopez --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 677af5f3d2..29feec0374 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: changelog-types: ${{ steps.configure-changelog.outputs.result }} token: ${{ steps.generate_token.outputs.token }} - - uses: actions/checkout@v2' + - uses: actions/checkout@v2 # we need to fetch all history and tags # so we build the proper version with: