Mohammed Al Sahaf
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
4 deletions
-
.github/workflows/release.yml
|
|
@ -22,10 +22,19 @@ jobs: |
|
|
|
|
|
|
|
- name: Checkout code |
|
|
|
uses: actions/checkout@v2 |
|
|
|
|
|
|
|
# So GoReleaser can generate the changelog properly |
|
|
|
- name: Unshallowify the repo clone |
|
|
|
run: git fetch --prune --unshallow |
|
|
|
with: |
|
|
|
fetch-depth: 0 |
|
|
|
|
|
|
|
# Force fetch upstream tags -- because 65 minutes |
|
|
|
# tl;dr: actions/checkout@v2 runs this line: |
|
|
|
# git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +ebc278ec98bb24f2852b61fde2a9bf2e3d83818b:refs/tags/ |
|
|
|
# which makes its own local lightweight tag, losing all the annotations in the process. Our earlier script ran: |
|
|
|
# git fetch --prune --unshallow |
|
|
|
# which doesn't overwrite that tag because that would be destructive. |
|
|
|
# Credit to @francislavoie for the investigation. |
|
|
|
# https://github.com/actions/checkout/issues/290#issuecomment-680260080 |
|
|
|
- name: Force fetch upstream tags |
|
|
|
run: git fetch --tags --force |
|
|
|
|
|
|
|
# https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027 |
|
|
|
- name: Print Go version and environment |
|
|
|