Skip to content

Commit f3fb097

Browse files
committed
actions
1 parent 74dea54 commit f3fb097

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
jobs:
2+
release:
3+
runs-on: ubuntu-latest
4+
permissions:
5+
contents: write # REQUIRED for creating the GitHub Release
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
with:
10+
fetch-depth: 0 # IMPORTANT for GoReleaser to work properly
11+
- name: Run GoReleaser
12+
uses: goreleaser/goreleaser-action@v6
13+
with:
14+
args: release --clean
15+
env:
16+
# This is the built-in token provided by GitHub Actions
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)