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 e71da89 commit f384863Copy full SHA for f384863
.github/workflows/release.yaml
@@ -0,0 +1,23 @@
1
+on: release
2
+name: Build
3
+jobs:
4
+ goreleaser:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ -
8
+ name: Checkout
9
+ uses: actions/checkout@v1
10
11
+ name: Set up Go
12
+ uses: actions/setup-go@v1
13
+ with:
14
+ go-version: 1.13.x
15
16
+ name: Run GoReleaser
17
+ uses: goreleaser/goreleaser-action@v1
18
19
+ version: latest
20
+ args: release --rm-dist
21
+ key: ${{ secrets.YOUR_PRIVATE_KEY }}
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Makefile
@@ -1,3 +1,3 @@
-go-log-exec:
- go build -o go-log-exec *.go
+git-log-exec:
+ go build -o git-log-exec *.go
0 commit comments