We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e60e9af commit af11bf7Copy full SHA for af11bf7
.github/workflows/main.yml
@@ -4,24 +4,24 @@ on:
4
pull_request:
5
push:
6
tags:
7
- - "*"
+ - "v*"
8
9
jobs:
10
goreleaser:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout
14
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
15
with:
16
fetch-depth: 0
17
- name: Set up Go
18
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
19
20
go-version: "1.22"
21
- name: Run GoReleaser
22
uses: goreleaser/goreleaser-action@v5
23
24
- version: latest
+ version: "~> v2"
25
args: release --clean
26
env:
27
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.goreleaser.yml
@@ -1,2 +1,4 @@
1
+version: 2
2
+
3
builds:
- skip: true
0 commit comments