aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-04-18 12:45:25 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-04-19 16:18:11 +0200
commitc3524a9d5706f09502f3d69175b867920248f2ba (patch)
treec13d9d6731fee34c9777750be7d172f5912f33d8 /.github/workflows/build.yml
parent53ff66c3173257cec84d5a0c314957122d1173a7 (diff)
downloadPrismLauncher-c3524a9d5706f09502f3d69175b867920248f2ba.tar.gz
PrismLauncher-c3524a9d5706f09502f3d69175b867920248f2ba.tar.bz2
PrismLauncher-c3524a9d5706f09502f3d69175b867920248f2ba.zip
fix: bundle binary tarball as user root
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c22baed3..3f2c07a5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -171,7 +171,7 @@ jobs:
cmake --install ${{ env.BUILD_DIR }} --prefix ${{ env.INSTALL_DIR }}
cd ${{ env.INSTALL_DIR }}
- tar -czf ../PolyMC.tar.gz *
+ tar --owner root --group root -czf ../PolyMC.tar.gz *
- name: Package (Linux, portable)
if: runner.os == 'Linux'