Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e6129bec
authored
Oct 11, 2025
by
CaIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: update Go version in CI configuration and add release workflow for multi-platform builds
parent
02c0495b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
89 additions
and
115 deletions
+89
-115
.github/workflows/electron-build.yml
+1
-1
.github/workflows/macos-release.yml
+0
-52
.github/workflows/release.yml
+88
-7
.github/workflows/windows-release.yml
+0
-55
No files found.
.github/workflows/electron-build.yml
View file @
e6129bec
...
...
@@ -37,7 +37,7 @@ jobs:
-
name
:
Setup Go
uses
:
actions/setup-go@v5
with
:
go-version
:
'
>=1.
18.0
'
go-version
:
'
>=1.
25.1
'
-
name
:
Build frontend
env
:
...
...
.github/workflows/macos-release.yml
deleted
100644 → 0
View file @
02c0495b
name
:
macOS Release
permissions
:
contents
:
write
on
:
workflow_dispatch
:
inputs
:
name
:
description
:
'
reason'
required
:
false
push
:
tags
:
-
'
*'
-
'
!*-alpha*'
jobs
:
release
:
runs-on
:
macos-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
:
"
"
NODE_OPTIONS
:
"
--max-old-space-size=4096"
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
run
:
|
go mod download
VERSION=$(git describe --tags)
go build -ldflags "-X 'one-api/common.Version=$VERSION'" -o new-api-macos-$VERSION
-
name
:
Release
uses
:
softprops/action-gh-release@v2
if
:
startsWith(github.ref, 'refs/tags/')
with
:
files
:
new-api-macos-*
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
.github/workflows/
linux-
release.yml
→
.github/workflows/release.yml
View file @
e6129bec
name
:
Linux Release
name
:
Release (Linux, macOS, Windows)
permissions
:
contents
:
write
...
...
@@ -12,8 +12,10 @@ on:
tags
:
-
'
*'
-
'
!*-alpha*'
jobs
:
release
:
linux
:
name
:
Linux Release
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
...
...
@@ -34,20 +36,18 @@ jobs:
-
name
:
Set up Go
uses
:
actions/setup-go@v3
with
:
go-version
:
'
>=1.
18.0
'
go-version
:
'
>=1.
25.1
'
-
name
:
Build Backend (amd64)
run
:
|
go mod download
VERSION=$(git describe --tags)
go build -ldflags "-s -w -X 'one-api/common.Version=$VERSION' -extldflags '-static'" -o new-api-$VERSION
-
name
:
Build Backend (arm64)
run
:
|
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y gcc-aarch64-linux-gnu
VERSION=$(git describe --tags)
CC=aarch64-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w -X 'one-api/common.Version=$VERSION' -extldflags '-static'" -o new-api-arm64-$VERSION
-
name
:
Release
uses
:
softprops/action-gh-release@v2
if
:
startsWith(github.ref, 'refs/tags/')
...
...
@@ -57,4 +57,86 @@ jobs:
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
macos
:
name
:
macOS Release
runs-on
:
macos-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
:
"
"
NODE_OPTIONS
:
"
--max-old-space-size=4096"
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.25.1'
-
name
:
Build Backend
run
:
|
go mod download
VERSION=$(git describe --tags)
go build -ldflags "-X 'one-api/common.Version=$VERSION'" -o new-api-macos-$VERSION
-
name
:
Release
uses
:
softprops/action-gh-release@v2
if
:
startsWith(github.ref, 'refs/tags/')
with
:
files
:
new-api-macos-*
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
windows
:
name
:
Windows Release
runs-on
:
windows-latest
defaults
:
run
:
shell
:
bash
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.25.1'
-
name
:
Build Backend
run
:
|
go mod download
VERSION=$(git describe --tags)
go build -ldflags "-s -w -X 'one-api/common.Version=$VERSION'" -o new-api-$VERSION.exe
-
name
:
Release
uses
:
softprops/action-gh-release@v2
if
:
startsWith(github.ref, 'refs/tags/')
with
:
files
:
new-api-*.exe
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
.github/workflows/windows-release.yml
deleted
100644 → 0
View file @
02c0495b
name
:
Windows Release
permissions
:
contents
:
write
on
:
workflow_dispatch
:
inputs
:
name
:
description
:
'
reason'
required
:
false
push
:
tags
:
-
'
*'
-
'
!*-alpha*'
jobs
:
release
:
runs-on
:
windows-latest
defaults
:
run
:
shell
:
bash
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
run
:
|
go mod download
VERSION=$(git describe --tags)
go build -ldflags "-s -w -X 'one-api/common.Version=$VERSION'" -o new-api-$VERSION.exe
-
name
:
Release
uses
:
softprops/action-gh-release@v2
if
:
startsWith(github.ref, 'refs/tags/')
with
:
files
:
new-api-*.exe
draft
:
true
generate_release_notes
:
true
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment