FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MIXAPI/.github/workflows/linux-release.yml at main · lineCode/MIXAPI · GitHub
lineCode
/
MIXAPI
Public
forked from
aiprodcoder/MIXAPI
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
MIXAPI
/
.github
/
workflows
/
linux-release.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
59 lines (56 loc) · 1.61 KB
Breadcrumbs
MIXAPI
/
.github
/
workflows
/
linux-release.yml
Copy path
File metadata and controls
59 lines (56 loc) · 1.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Linux Release
permissions
:
contents
:
write
on
:
workflow_dispatch
:
inputs
:
name
:
description
:
'
reason
'
required
:
false
push
:
tags
:
-
'
*
'
-
'
!*-alpha*
'
jobs
:
release
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
-
uses
:
oven-sh/setup-bun@v2
with
:
bun-version
:
latest
-
name
:
Build Frontend
env
:
CI
:
"
"
run
:
|
cd web
bun install
DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$(git describe --tags) bun run build
cd ..
-
name
:
Set up Go
uses
:
actions/setup-go@v3
with
:
go-version
:
'
>=1.18.0
'
-
name
:
Build Backend (amd64)
run
:
|
go mod download
go build -ldflags "-s -w -X 'one-api/common.Version=$(git describe --tags)' -extldflags '-static'" -o one-api
-
name
:
Build Backend (arm64)
run
:
|
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y gcc-aarch64-linux-gnu
CC=aarch64-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w -X 'one-api/common.Version=$(git describe --tags)' -extldflags '-static'" -o one-api-arm64
-
name
:
Release
uses
:
softprops/action-gh-release@v1
if
:
startsWith(github.ref, 'refs/tags/')
with
:
files
:
|
one-api
one-api-arm64
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
Back
|
FazBrowse Home
|
New Git URL