From 0b45ff110ee8934cc5102bd8579ce73c40d349c1 Mon Sep 17 00:00:00 2001 From: "B. Blechschmidt" Date: Tue, 14 Nov 2023 23:19:19 +0100 Subject: [PATCH] Update naming for automated builds --- .github/workflows/publish-exe.yml | 4 ++-- dist/build.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-exe.yml b/.github/workflows/publish-exe.yml index a3e96c4..f089f06 100644 --- a/.github/workflows/publish-exe.yml +++ b/.github/workflows/publish-exe.yml @@ -23,5 +23,5 @@ jobs: name: Automated build of ${{ github.ref }} files: dist/bin/* draft: true - prerelease: true - body: This is an automated build of commit ${{ github.ref }}. \ No newline at end of file + prerelease: false + body: This is an automated build of commit ${{ github.ref }}. diff --git a/dist/build.sh b/dist/build.sh index 07c26b0..e30bdab 100755 --- a/dist/build.sh +++ b/dist/build.sh @@ -239,5 +239,5 @@ test "$INSTALL" = "1" && { if test "$BUNDLE" = "1"; then pyinstaller --clean -F -n pallium-"$(uname -m)" --distpath bin --add-binary tun2socks:bin --add-binary tor:bin --add-binary runsc:bin --add-binary gvisor-init:bin --add-binary slirpnetstack:bin --add-data tor-lib:tor-lib --add-data ../extra/licensing:licensing bootstrap.py else - pyinstaller --clean -F -n pallium-"$(uname -m)" --distpath bin bootstrap.py + pyinstaller --clean -F -n pallium-"$(uname -m)"-bundle-linux --distpath bin bootstrap.py fi