Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a2fee18b43 | |||
| 6bbb25546b | |||
|
|
de49d6ff85 | ||
| d71b2ce468 | |||
|
|
523499ba9f | ||
| 778fe67be0 |
35
.github/workflows/release.yml
vendored
35
.github/workflows/release.yml
vendored
@@ -9,6 +9,9 @@ on:
|
|||||||
- 'v*.*.*'
|
- 'v*.*.*'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -36,7 +39,7 @@ jobs:
|
|||||||
run: gf build -ew -v "${{ github.ref_name }}"
|
run: gf build -ew -v "${{ github.ref_name }}"
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3 # 降级为 v3,兼容 Gitea
|
||||||
with:
|
with:
|
||||||
name: uploads3-${{ github.ref_name }}
|
name: uploads3-${{ github.ref_name }}
|
||||||
path: |
|
path: |
|
||||||
@@ -50,17 +53,43 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3 # 降级为 v3,与上传版本匹配
|
||||||
with:
|
with:
|
||||||
name: uploads3-${{ github.ref_name }}
|
name: uploads3-${{ github.ref_name }}
|
||||||
path: bin
|
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
|
- name: Create GitHub Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
tag_name: ${{ github.ref_name }}
|
tag_name: ${{ github.ref_name }}
|
||||||
name: ${{ github.ref_name }}
|
name: ${{ github.ref_name }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
files: |
|
files: |
|
||||||
bin/**
|
dist/*
|
||||||
@@ -4,11 +4,11 @@
|
|||||||
gfcli:
|
gfcli:
|
||||||
build:
|
build:
|
||||||
name: "uploads3"
|
name: "uploads3"
|
||||||
arch: "amd64,arm,arm64"
|
arch: "amd64,386,arm,arm64"
|
||||||
system: "windows,android,linux"
|
system: "windows,linux,darwin,freebsd,netbsd,openbsd"
|
||||||
mod: "none"
|
mod: "none"
|
||||||
packSrc: "hack,resource,manifest"
|
packSrc: "hack,resource,manifest"
|
||||||
version: "v1.0.0"
|
# version: "v1.0.0"
|
||||||
path: "./bin"
|
path: "./bin"
|
||||||
extra: -trimpath -ldflags="-s -w"
|
extra: -trimpath -ldflags="-s -w"
|
||||||
# cgo: true
|
# cgo: true
|
||||||
|
|||||||
Reference in New Issue
Block a user