-
Notifications
You must be signed in to change notification settings - Fork 15
71 lines (59 loc) · 1.76 KB
/
CI.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: ci
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
workflow_dispatch: {}
jobs:
build:
name: Build Go Binaries
runs-on: ubuntu-20.04
steps:
- name: Checkout the repo
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: "1.20"
- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('./go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: |
sh minify.sh
export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64
go build -trimpath -ldflags="-s -w" -o "dist/onesend-amd64" .
export GOOS=linux
export GOARCH=arm64
go build -trimpath -ldflags="-s -w" -o "dist/onesend-arm64" .
export GOOS=windows
export GOARCH=amd64
go build -trimpath -ldflags="-s -w" -o "dist/onesend.exe" .
cp config.sample.toml dist/config.toml
touch dist/token.txt
cd dist
mv onesend-amd64 onesend
tar Jcf onesend-ci-${GITHUB_SHA:0:7}-linux-x86_64.tar.xz onesend config.toml token.txt
mv onesend-arm64 onesend
tar Jcf onesend-ci-${GITHUB_SHA:0:7}-linux-arm64.tar.xz onesend config.toml token.txt
zip onesend-ci-${GITHUB_SHA:0:7}-windows-x86_64.zip onesend.exe config.toml token.txt
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: executable
path: |
dist/*.tar.xz
dist/*.zip