Skip to content

Commit

Permalink
Add release github workflow using GoReleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardecook committed Sep 17, 2019
1 parent 72e9bcc commit d5fd001
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
on:
push:
tags:
- 'v*'
name: GoReleaser
jobs:
release:
name: Release
runs-on: ubuntu-latest
needs: [ test, lint ]
steps:
- name: Check out code
uses: actions/checkout@v1
- name: goreleaser
uses: docker://goreleaser/goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: release
if: success()

0 comments on commit d5fd001

Please sign in to comment.