-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (54 loc) · 1.61 KB
/
release.yml
File metadata and controls
62 lines (54 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Generated by climate publish.
name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64
- goos: darwin
goarch: amd64
- goos: darwin
goarch: arm64
- goos: windows
goarch: amd64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build binary
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
EXT=""
if [ "$GOOS" = "windows" ]; then EXT=".exe"; fi
BINARY="github-${GOOS}-${GOARCH}${EXT}"
go build -ldflags="-X github/cmd.version=${GITHUB_REF_NAME}" -o "${BINARY}" .
echo "BINARY=${BINARY}" >> "$GITHUB_ENV"
- name: Package binary
run: |
if [ "${{ matrix.goos }}" = "windows" ]; then
zip "github-${{ matrix.goos }}-${{ matrix.goarch }}.zip" "${BINARY}"
echo "ARCHIVE=github-${{ matrix.goos }}-${{ matrix.goarch }}.zip" >> "$GITHUB_ENV"
else
tar czf "github-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz" "${BINARY}"
echo "ARCHIVE=github-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz" >> "$GITHUB_ENV"
fi
- name: Upload release assets
uses: softprops/action-gh-release@v2
with:
files: ${{ env.ARCHIVE }}