mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
feat(windows): use go fork for faster exec
This commit is contained in:
parent
b45e0767a9
commit
0e5fc7dbe0
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
|
@ -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 🔑
|
||||
|
|
Loading…
Reference in a new issue