Skip to content

Commit 0858cd3

Browse files
committed
chore: Change workflow to run on Windows and verify Chocolatey installation
1 parent 41dad31 commit 0858cd3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
goreleaser:
13-
runs-on: ubuntu-latest
13+
runs-on: windows-latest
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
@@ -22,12 +22,15 @@ jobs:
2222
with:
2323
go-version: 1.24.1
2424

25+
- name: Verify Chocolatey Installation
26+
run: choco --version
27+
2528
- name: Run GoReleaser
2629
uses: goreleaser/goreleaser-action@v6
2730
with:
2831
distribution: goreleaser
2932
version: "~> v2"
30-
args: release --clean --skip=chocolatey
33+
args: release --clean
3134
env:
3235
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
3336
CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}

0 commit comments

Comments
 (0)