From e9ce7fc87a237f9a20fd1cb3ad044b1b6528a252 Mon Sep 17 00:00:00 2001 From: Miao Wang Date: Mon, 14 Sep 2020 20:42:12 +0800 Subject: [PATCH] CI: change gid of files in the tar archive to 0 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc6d1ec..f2c23c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: run: | for i in linux-amd64 linux-arm64; do make ARCH=$i all - tar -cz --numeric-owner --owner root -f tunasync-$i-bin.tar.gz -C build-$i tunasync tunasynctl + tar -cz --numeric-owner --owner root --group root -f tunasync-$i-bin.tar.gz -C build-$i tunasync tunasynctl done - name: Create Release