feat(windows): use go fork for faster exec

This commit is contained in:
Jan De Dobbeleer 2021-12-05 16:40:45 +01:00
parent b45e0767a9
commit 0e5fc7dbe0
No known key found for this signature in database
GPG key ID: F6CC273CE5BA9AEE

View file

@ -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 🔑