-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (56 loc) · 1.57 KB
/
action.yml
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
name: Release Build
on:
push:
tags:
- 'v*'
- 'pre-*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
exclude:
- goos: windows
goarch: arm64
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CGO_ENABLED: 0
run: |
BUILD_TIME=$(date "+%F %T")
GIT_COMMIT=$(git rev-parse HEAD)
VERSION=${GITHUB_REF#refs/tags/}
OUTPUT="ipaas-agent-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}"
if [ "${{ matrix.goos }}" = "windows" ]; then
OUTPUT="${OUTPUT}.exe"
fi
go build -ldflags "-X main.BuildTime=${BUILD_TIME} -X main.GitCommit=${GIT_COMMIT} -X main.Version=${VERSION}" -o ${OUTPUT}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: ipaas-agent-*
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: binaries
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: ipaas-agent-*
prerelease: ${{ contains(github.ref, 'pre-') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}