We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a4241b commit 99fe20dCopy full SHA for 99fe20d
.github/workflows/release.yml
@@ -32,6 +32,15 @@ jobs:
32
version: latest
33
args: check
34
35
+ - name: Install Chocolatey CLI
36
+ run: |
37
+ sudo apt update
38
+ sudo apt install -y mono-complete
39
+ wget https://community.chocolatey.org/install.ps1 -O - | sudo bash
40
+ # Verify choco is in PATH and accessible
41
+ which choco || echo "choco not found in PATH"
42
+ choco --version || echo "choco command failed"
43
+
44
- name: Run GoReleaser
45
uses: goreleaser/goreleaser-action@v6
46
with:
0 commit comments