summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2020-05-05 20:50:30 -0400
committerGitHub <noreply@github.com>2020-05-06 00:50:30 +0000
commit9408dacc272e60759aa90ab4766d95bfde3d5fb1 (patch)
tree694e895a6ef662dfcec060dc8127973a33762a03 /.github
parent12cfc19487d99e0add1e86f21156502545121e23 (diff)
Fixing goreleaser syntax error (#3355)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 14 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d8d1cf7..c096fbd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,10 +4,10 @@ name: Cross-Platform
on:
push:
- branches:
+ branches:
- master
pull_request:
- branches:
+ branches:
- master
jobs:
@@ -133,3 +133,15 @@ jobs:
# uses: docker://reviewdog/action-golangci-lint:v1 # pre-build docker image
with:
github_token: ${{ secrets.github_token }}
+
+ goreleaser-check:
+ runs-on: ubuntu-latest
+ steps:
+ - name: checkout
+ uses: actions/checkout@v2
+ - uses: goreleaser/goreleaser-action@v1
+ with:
+ version: latest
+ args: check
+ env:
+ TAG: ${{ steps.vars.outputs.version_tag }}