-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (57 loc) · 1.53 KB
/
Copy pathrelease.yml
File metadata and controls
70 lines (57 loc) · 1.53 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
63
64
65
66
67
68
69
70
name: Release
on:
release:
types: [created]
permissions:
contents: write
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run tests
run: go test -v -race ./...
build:
name: Build ${{ matrix.os }}-${{ matrix.arch }}
runs-on: ubuntu-latest
needs: test
strategy:
matrix:
include:
- os: linux
arch: amd64
- os: linux
arch: arm64
- os: darwin
arch: amd64
- os: darwin
arch: arm64
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Build binary
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
run: |
VERSION="${{ github.event.release.tag_name }}"
BINARY_NAME="proj-${{ matrix.os }}-${{ matrix.arch }}"
go build -ldflags "-s -w -X main.version=${VERSION}" -o "${BINARY_NAME}" ./cmd/proj
# Create checksum for raw binary
sha256sum "${BINARY_NAME}" > "${BINARY_NAME}.sha256"
- name: Upload release assets
uses: softprops/action-gh-release@v2
with:
files: |
proj-${{ matrix.os }}-${{ matrix.arch }}
proj-${{ matrix.os }}-${{ matrix.arch }}.sha256