Skip to content

Commit

Permalink
Merge pull request #1 from loveholidays/feature/add-goreleaser
Browse files Browse the repository at this point in the history
add goreleaser github action
  • Loading branch information
husseinferas authored Jan 19, 2023
2 parents d668c9e + 35042c9 commit 833b2d9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: goreleaser

on:
push:
branches:
- "master"
tags:
- "v*.*.*"

permissions:
contents: read
pull-requests: write
issues: write
checks: read
packages: write

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 833b2d9

Please sign in to comment.