Skip to content

Commit de77077

Browse files
committed
try installing mono in the goreleaser action
1 parent 6e7a469 commit de77077

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/goreleaser.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: goreleaser
22

33
on:
44
push:
5-
# run only against tags
5+
# run only against version tags
66
tags:
7-
- '*'
7+
- 'v*.*.*'
88

99
permissions:
1010
contents: write
@@ -22,6 +22,9 @@ jobs:
2222
- uses: actions/setup-go@v5
2323
with:
2424
go-version: stable
25+
- name: install mono
26+
run: |
27+
apt-get update && apt-get install -y mono-runtime
2528
- name: install choco
2629
run: |
2730
mkdir -p /opt/chocolatey

0 commit comments

Comments
 (0)