Skip to content

Commit

Permalink
Added github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
arnobroekhof committed Nov 12, 2019
2 parents 5ec0a15 + 54d0fdd commit 8fe5a2e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release
on:
push:
branches:
- "!*"
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
name: goreleaser
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: goreleaser
uses: goreleaser/goreleaser-action@master
with:
args: release
env:
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}

0 comments on commit 8fe5a2e

Please sign in to comment.