diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9593ed0..ea5b4b5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,6 +46,11 @@ jobs: go-version: 1.17 - name: Checkout code 👋 uses: actions/checkout@v2 + - name: Override Go ♻️ + run: | + New-Item -Path ./bin -ItemType Directory + Invoke-WebRequest 'https://github.com/jandedobbeleer/go/releases/download/1.17.3/go' -OutFile "$env:GOROOT/bin/go" + chmod a+x "$env:GOROOT/bin/go" 2>&1 - name: Tag HEAD 😸 run: git tag ${{ needs.changelog.outputs.tag }} - name: Install cosign 🔑