diff options
| author | Stefan Boberg <[email protected]> | 2024-03-12 18:49:45 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2024-03-12 18:49:45 +0100 |
| commit | de3c307f353cdc7015d7b6a819853dadcf6137ec (patch) | |
| tree | fe5d2d344fe47f0c0f6851142b4524d0319b10b9 /.github/workflows/create_release.yml | |
| parent | workflow fixes (#1) (diff) | |
| download | zen-de3c307f353cdc7015d7b6a819853dadcf6137ec.tar.xz zen-de3c307f353cdc7015d7b6a819853dadcf6137ec.zip | |
workflow tweaks
Diffstat (limited to '.github/workflows/create_release.yml')
| -rw-r--r-- | .github/workflows/create_release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index c417d412e..77ecc2f38 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -10,7 +10,7 @@ on: jobs: bundle-windows: - runs-on: [self-hosted, windows, x64] + runs-on: [self-hosted, windows, x64, hv] timeout-minutes: 25 steps: @@ -59,7 +59,7 @@ jobs: path: build/zenserver-win64.zip bundle-linux: - runs-on: [self-hosted, linux, x64] + runs-on: [self-hosted, linux, x64, hv] timeout-minutes: 25 steps: @@ -119,7 +119,7 @@ jobs: path: build/zenserver-linux.zip bundle-macos: - runs-on: [self-hosted, macos, x64] + runs-on: [self-hosted, macos, x64, hv] timeout-minutes: 25 steps: @@ -178,7 +178,7 @@ jobs: path: build/zenserver-macos.zip create-release: - runs-on: [self-hosted, linux, x64] + runs-on: [self-hosted, linux, x64, hv] timeout-minutes: 5 needs: [bundle-linux, bundle-macos, bundle-windows] |