ci: compile for more architectures when releasing

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-01-11 16:12:14 +08:00
parent 95c4d54ee2
commit 5fb63e119c
No known key found for this signature in database

View File

@ -23,7 +23,7 @@ jobs:
- name: Build
run: |
for i in linux-amd64 linux-arm64; do
for i in linux-amd64 linux-arm64 linux-riscv64 linux-loong64; do
make ARCH=$i all
tar -cz --numeric-owner --owner root --group root -f tunasync-$i-bin.tar.gz -C build-$i tunasync tunasynctl
done