-
Notifications
You must be signed in to change notification settings - Fork 7
71 lines (55 loc) · 1.9 KB
/
package.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
67
68
69
70
71
name: release project
on:
issues:
types:
- closed
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout isx-cli
uses: actions/checkout@v4
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
repository: "isxcode/isx-cli"
ref: 'main'
- 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_windows_arm64
run: CGO_ENABLED=0 GOOS=windows GOARCH=arm64 go build -o ./target/isx_windows_arm64.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: copy install.sh
run: cp install.sh target/install.sh
- name: Upload Package to Ali oss
uses: chf007/aliyun-oss-upload-action@main
env:
OSS_ACCESS_KEY_ID: ${{ secrets.ALI_OSS_KEY_ID }}
OSS_ACCESS_KEY_SECRET: ${{ secrets.ALI_OSS_KEY_SECRET }}
with:
region: oss-cn-shanghai
bucket: isxcode
source-dir: 'target'
dest-dir: 'zhixingyun'