-
Notifications
You must be signed in to change notification settings - Fork 2
165 lines (139 loc) · 4.14 KB
/
buildapp.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Build and Release
run-name: Build ${{ github.event.inputs.version }} by @${{ github.actor }}
permissions: write-all
on:
workflow_dispatch:
inputs:
version:
description: '版本号'
required: true
jobs:
build_win:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install UPX
run: sudo apt-get install upx
- name: download modules
run: go mod download
- name: Run build script
run: bash build.sh ${{ github.event.inputs.version }} win
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: mirouter-ui-win
path: ./build/**
build_linux:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install UPX
run: sudo apt-get install upx
- name: download modules
run: go mod download
- name: Run build script
run: bash build.sh ${{ github.event.inputs.version }} linux
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: mirouter-ui-linux
path: ./build/**
build_darwin:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install UPX
run: sudo apt-get install upx
- name: download modules
run: go mod download
- name: Run build script
run: bash build.sh ${{ github.event.inputs.version }} darwin
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: mirouter-ui-darwin
path: ./build/**
post_release:
runs-on: ubuntu-20.04
needs: [build_win, build_linux, build_darwin]
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: mirouter-ui-win
path: ./build
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: mirouter-ui-linux
path: ./build
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: mirouter-ui-darwin
path: ./build
- name: Upload Release Assets
uses: ncipollo/release-action@v1
- name: Upload Release Assets
uses: ncipollo/release-action@v1
with:
artifacts: "build/"
token: ${{ secrets.TOKEN }}
tag: ${{ github.event.inputs.version }}
name: Release ${{ github.event.inputs.version }}
draft: true
# 安装 rclone
- name: Install rclone
run: |
cd ~
curl https://rclone.org/install.sh | sudo bash
# 配置 rclone
- name: Configure rclone
run: |
mkdir -p ~/.config/rclone
cat > ~/.config/rclone/rclone.conf << EOF
${{ secrets.RCLONECONFIG }}
EOF
- name: Sync to OneDrive
run: |
sudo timedatectl set-timezone "Asia/Shanghai"
rclone mkdir one:/share/Mirouter-ui/${{ github.event.inputs.version }}
rclone sync ./build one:/share/Mirouter-ui/${{ github.event.inputs.version }}
builddocker:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6
push: true
tags: thun888/mirouter-ui:latest
build-args: |
VERSION=${{ github.event.inputs.version }}