diff options
| author | Dan Engelbrecht <[email protected]> | 2024-03-15 13:36:34 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-03-15 13:36:34 +0100 |
| commit | 56150a9449736934b96738320706ebbea3503735 (patch) | |
| tree | 8e70cab890e2fa761ec662e9bcc0f4c1d871957e /.github/workflows/create_release.yml | |
| parent | remove vcpkg integrate install from windows setup (diff) | |
| download | zen-56150a9449736934b96738320706ebbea3503735.tar.xz zen-56150a9449736934b96738320706ebbea3503735.zip | |
make sure zenserver reacts and exist on SIGTERM signal (#8)
* make sure zenserver reacts and exist on SIGTERM signal
* add zen tag to all runners
* temp disable mac codesigning
Diffstat (limited to '.github/workflows/create_release.yml')
| -rw-r--r-- | .github/workflows/create_release.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 60ee4983e..0e9584357 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -11,7 +11,7 @@ on: jobs: bundle-windows: - runs-on: [hv, windows, x64] + runs-on: [hv, windows, x64, zen] timeout-minutes: 25 steps: @@ -60,7 +60,7 @@ jobs: path: build/zenserver-win64.zip bundle-linux: - runs-on: [hv, linux, x64] + runs-on: [hv, linux, x64, zen] timeout-minutes: 25 steps: @@ -120,7 +120,7 @@ jobs: path: build/zenserver-linux.zip bundle-macos: - runs-on: [hv, macos, x64] + runs-on: [hv, macos, x64, zen] timeout-minutes: 25 steps: @@ -153,7 +153,8 @@ jobs: - name: Bundle run: | - xmake bundle -v -y --codesignidentity="Developer ID Application" + xmake bundle -v -y +# xmake bundle -v -y --codesignidentity="Developer ID Application" env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg @@ -179,7 +180,7 @@ jobs: path: build/zenserver-macos.zip create-release: - runs-on: [hv, linux, x64] + runs-on: [hv, linux, x64, zen] timeout-minutes: 5 needs: [bundle-linux, bundle-macos, bundle-windows] |