Skip to content

Commit

Permalink
Add github actions script for gorelease
Browse files Browse the repository at this point in the history
  • Loading branch information
mogensen committed Mar 25, 2020
1 parent 3756d4a commit 38ecfc1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release with goreleaser
on:
push:
tags:
- v*.*.*
jobs:
build:
runs-on: ubuntu-latest
name: goreleaser
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2-beta
with:
go-version: '^1.14.0'
- name: Release via goreleaser
uses: goreleaser/goreleaser-action@master
with:
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 38ecfc1

Please sign in to comment.