Skip to content

Commit

Permalink
adding osx release to github actions'
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeady committed May 6, 2020
1 parent b43acf2 commit eb3833a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release-osx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: goreleaser

on:
pull_request:
push:

jobs:
goreleaser:
runs-on: macos-10.15
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.14.x
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit eb3833a

Please sign in to comment.