更新版本号至 3.4.9-xg1,调整相关文档和构建脚本示例
All checks were successful
Build and Release / build-and-test (arm64, alpine) (push) Successful in -21s
Build and Release / build-and-test (amd64, alpine) (push) Successful in -18s
Build and Release / build-and-test (arm64, ubuntu) (push) Successful in -9s
Build and Release / build-and-test (amd64, ubuntu) (push) Successful in -3s
Build and Release / release (push) Successful in 23s

This commit is contained in:
2026-01-06 12:22:17 +08:00
parent 4cd7d0453d
commit 3399456f48
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ on:
env: env:
DOCKER_BUILDKIT: "1" DOCKER_BUILDKIT: "1"
PRODUCT_NAME: "xxxigcc" PRODUCT_NAME: "xxxigcc"
PACKAGE_VERSION: "3.4.8-xg1" PACKAGE_VERSION: "3.4.9-xg1"
BUILDX_NO_DEFAULT_ATTESTATIONS: "1" BUILDX_NO_DEFAULT_ATTESTATIONS: "1"
jobs: jobs:

View File

@@ -34,10 +34,10 @@ sudo apt-get install xxxigcc
```bash ```bash
# 1. 下载对应架构的包 # 1. 下载对应架构的包
wget https://gitea.bcde.io/releases/download/3.4.8-xg1/xxxigcc-amd64-ubuntu-3.4.8-xg1.tar.gz wget https://gitea.bcde.io/releases/download/3.4.9-xg1/xxxigcc-amd64-ubuntu-3.4.9-xg1.tar.gz
# 2. 解压 # 2. 解压
tar -xzf xxxigcc-amd64-ubuntu-3.4.8-xg1.tar.gz tar -xzf xxxigcc-amd64-ubuntu-3.4.9-xg1.tar.gz
cd xxxigcc cd xxxigcc
# 3. 编辑配置文件 # 3. 编辑配置文件

2
debian/build-deb.sh vendored
View File

@@ -4,7 +4,7 @@ set -e
# 参数检查 # 参数检查
if [ $# -ne 3 ]; then if [ $# -ne 3 ]; then
echo "Usage: $0 <ARCH> <VERSION> <TARGZ_FILE>" echo "Usage: $0 <ARCH> <VERSION> <TARGZ_FILE>"
echo "Example: $0 amd64 3.4.8-xg1 xxxigcc-amd64-ubuntu-3.4.8-xg1.tar.gz" echo "Example: $0 amd64 3.4.9-xg1 xxxigcc-amd64-ubuntu-3.4.9-xg1.tar.gz"
exit 1 exit 1
fi fi