4 Commits

Author SHA1 Message Date
a2fee18b43 降低不支持的编译版本
All checks were successful
Release / build (push) Successful in 14m45s
Release / release (push) Successful in 3m31s
2025-11-04 16:05:00 +08:00
6bbb25546b 增加更多的编译平台
Some checks failed
Release / build (push) Failing after 5m3s
Release / release (push) Has been skipped
2025-10-30 15:53:06 +08:00
乔焰阳
de49d6ff85 Enhance release workflow with artifact packaging
Some checks failed
Release / build (push) Failing after 40s
Release / release (push) Has been skipped
Add packaging step for binaries and checksums in release workflow.
2025-10-30 15:40:58 +08:00
d71b2ce468 提高打包速度,只打包x64 2025-10-30 15:34:39 +08:00
2 changed files with 30 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ jobs:
run: gf build -ew -v "${{ github.ref_name }}"
- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3 # 降级为 v3兼容 Gitea
with:
name: uploads3-${{ github.ref_name }}
path: |
@@ -53,11 +53,36 @@ jobs:
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3 # 降级为 v3与上传版本匹配
with:
name: uploads3-${{ github.ref_name }}
path: bin
- name: Package artifacts
run: |
set -euo pipefail
mkdir -p dist
# Find all built binaries recursively and package with unique names per platform/arch
mapfile -t files < <(find bin -type f \( -name 'uploads3' -o -name 'uploads3.exe' \))
for f in "${files[@]}"; do
dir="$(dirname "$f")"
base="$(basename "$f")"
plat_arch="$(basename "$dir")" # expects linux_amd64, windows_amd64, etc.
case "$plat_arch" in
windows_*)
zip_name="uploads3_${{ github.ref_name }}_${plat_arch}.zip"
(cd "$dir" && zip -9 "${GITHUB_WORKSPACE}/dist/${zip_name}" "$base")
;;
*)
tar_name="uploads3_${{ github.ref_name }}_${plat_arch}.tar.gz"
(cd "$dir" && tar -czf "${GITHUB_WORKSPACE}/dist/${tar_name}" "$base")
;;
esac
done
# Checksums
(cd dist && sha256sum * > SHA256SUMS.txt)
ls -al dist
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
@@ -67,4 +92,4 @@ jobs:
draft: false
prerelease: false
files: |
bin/**
dist/*

View File

@@ -4,8 +4,8 @@
gfcli:
build:
name: "uploads3"
arch: "amd64,arm,arm64"
system: "windows,linux"
arch: "amd64,386,arm,arm64"
system: "windows,linux,darwin,freebsd,netbsd,openbsd"
mod: "none"
packSrc: "hack,resource,manifest"
# version: "v1.0.0"