-
Notifications
You must be signed in to change notification settings - Fork 7
65 lines (50 loc) · 1.64 KB
/
release.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
name: tag package
on:
release:
types: [published]
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout isx-cli
uses: actions/checkout@v4
- name: Cache go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup go env
uses: actions/[email protected]
with:
go-version-file: './go.mod'
- name: Install go modules
run: |
go env -w GO111MODULE=auto
go mod tidy
go install
- name: isx_windows_amd64
run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o ./target/isx_windows_amd64.exe main.go
- name: isx_linux_amd64
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./target/isx_linux_amd64 main.go
- name: isx_darwin_arm64
run: CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o ./target/isx_darwin_arm64 main.go
- name: isx_darwin_amd64
run: CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ./target/isx_darwin_amd64 main.go
- name: Upload BinaryFile
uses: actions/upload-artifact@v3
with:
name: i-artifact
path: |
./target/isx_windows_amd64.exe
./target/isx_linux_amd64
./target/isx_darwin_arm64
./target/isx_darwin_amd64
- name: Publish to github
uses: softprops/action-gh-release@v1
with:
files: target/*
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}