Copy newer Go into goreleaser image

This commit is contained in:
Katrina Verey
2022-03-28 15:12:12 -04:00
parent 5833f4ca80
commit 9e57ab72fc
2 changed files with 22 additions and 0 deletions

View File

@@ -37,6 +37,14 @@ steps:
- checkout
- $TAG_NAME
# Copy a newer version of Go into the goreleaser workspace.
# Use the same source image as the builder in kustomize.Dockerfile
- name: golang:alpine
entrypoint: /bin/sh
args:
- '-c'
- 'mkdir -p /workspace/bin && cp $(go env GOROOT)/bin/go /workspace/bin'
# Run goreleaser indirectly via a shell script
# to configure it properly.
- name: goreleaser/goreleaser:v0.179.0
@@ -44,6 +52,8 @@ steps:
entrypoint: /bin/sh
dir: myClone
secretEnv: ['GITHUB_TOKEN']
env:
- 'GO_BINARY_PATH=/workspace/bin/go'
args:
- releasing/cloudbuild.sh
- $TAG_NAME