We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74dea54 commit f3fb097Copy full SHA for f3fb097
.github/workflows/main.yaml
@@ -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
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