From 47d2c1264eb14e55ade42f993be5163ffc6cfaae Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Thu, 23 Nov 2023 10:39:06 +0100 Subject: embed html frontend content as binary compiled data (#559) - Feature: Added xmake task `updatefrontend` which updates the zip file containing the frontend html (`/src/zenserver/frontend/html.zip`) - Improvement: The frontend html content is no longer appended at the end of the executable which prevented signing, instead it is compiled in from the `/src/zenserver/frontend/html.zip` archive - Improvement: MacOS now does ad-hoc code signing by default when issuing `xmake bundle`, signing with proper cert is done on CI builds --- .github/workflows/create_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/create_release.yml') diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 658b6b648..e6616aa25 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -152,7 +152,7 @@ jobs: - name: Bundle run: | - xmake bundle -v -y + xmake bundle -v -y --codesignidentity="Developer ID Application" env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg -- cgit v1.2.3