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 bb7bd63 commit 197c417Copy full SHA for 197c417
3 files changed
.github/main.workflow
.github/workflows/release.yml
@@ -0,0 +1,19 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - "v*"
5
+name: GoReleaser
6
+jobs:
7
+ release:
8
+ name: Release
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Check out code
12
+ uses: actions/checkout@master
13
+ - name: goreleaser
14
+ uses: docker://goreleaser/goreleaser
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
17
+ with:
18
+ args: release
19
+ if: success()
.github/workflows/test.yml
@@ -0,0 +1,14 @@
+on: push
+name: Test
+ test:
+ - uses: actions/checkout@master
+ fetch-depth: 1
+ - uses: actions/setup-go@v1
+ go-version: "1.13"
+ - run: go mod download
+ - run: go test ./...
0 commit comments