From 0424d4c0bf00020f1e2c1b211d13556586a1c4b8 Mon Sep 17 00:00:00 2001 From: Cedric Ziel <cedric@cedric-ziel.com> Date: Sun, 11 Jul 2021 13:47:38 +0200 Subject: [PATCH] Use Go 1.16 in release job To make goreleaser recognize arm64, use go 1.16 here as well. --- .github/workflows/go.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 11d4188..d35450d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,6 +30,10 @@ jobs: if: ${{ startsWith(github.ref, 'refs/tags/') && contains(fromJSON('["mxschmitt", "JonasProgrammer"]'), github.actor) }} steps: - uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: -- GitLab