Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
Create gorelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnirtl committed Feb 27, 2020
1 parent 16b8d84 commit 38d906f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gorelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Gorelease
on:
push:
branches:
- "!*"
tags:
- "v*.*.*"
jobs:

release:
name: Release
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.14
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: GoReleaser Action
uses: goreleaser/goreleaser-action@v1.3.1
with:
# GoReleaser version. Example: v0.118.0
version: latest
args: release --rm-dist

0 comments on commit 38d906f

Please sign in to comment.