Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
John Taylor authored and John Taylor committed May 11, 2021
1 parent e364deb commit d10ed57
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
tags:
- "*"

jobs:
build:
name: GoReleaser build
runs-on: ubuntu-latest

steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set Up Go
uses: actions/setup-go@v2
with:
go-version: '1.x'
id: go

- name: run GoReleaser
uses: goreleaser/goreleaser-action@master
with:
version: latest
args: release --rm-dist -p 10
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d10ed57

Please sign in to comment.