Skip to content

Commit fd1de0f

Browse files
committed
ci: add release workflow
Signed-off-by: gouravkrosx <[email protected]>
1 parent acff741 commit fd1de0f

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/workflows/release.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- "v*.*.*"
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
build-go:
12+
runs-on: self-hosted
13+
# needs: build-ui
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
fetch-depth: 0
18+
- name: Set up Go
19+
uses: actions/setup-go@v2
20+
with:
21+
go-version: 1.22
22+
23+
- name: Run GoReleaser
24+
uses: goreleaser/goreleaser-action@v2
25+
with:
26+
distribution: goreleaser
27+
version: latest
28+
args: release --rm-dist
29+
env:
30+
VERSION: ${{ github.ref }}
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# GoReleaser configuration
2+
archives:
3+
- name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
4+
format: binary
5+
6+
builds:
7+
- binary: pilot
8+
id: pilot
9+
main: ./main.go
10+
env:
11+
- CGO_ENABLED=0
12+
goos:
13+
- linux
14+
# - windows
15+
goarch:
16+
- amd64
17+
- arm64

0 commit comments

Comments
 (0)