Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
GoReleaser builds using Github Actions (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziadoz authored Sep 29, 2019
1 parent c13feb3 commit 11a40c5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# https://goreleaser.com/actions/
name: GoReleaser
on:
push:
tags:
- 'v*'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: goreleaser
uses: docker://goreleaser/goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: release
if: success()

0 comments on commit 11a40c5

Please # to comment.