Skip to content

Commit

Permalink
feat: Build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dadav committed Feb 24, 2024
1 parent 6757aa6 commit 6388e0f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: build

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
types:
- opened
- reopened

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ^1.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --snapshot --clean

0 comments on commit 6388e0f

Please sign in to comment.