aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2024-03-14 23:45:40 +0100
committerDan Engelbrecht <[email protected]>2024-03-14 23:48:16 +0100
commit037d939ec0e1fd213da3e36352ba1bb628d0be31 (patch)
treec0b1784ce292e6b7ad5db2bf37ed96e3b66f1d8b
parent5.4.2-pre1 (diff)
downloadzen-037d939ec0e1fd213da3e36352ba1bb628d0be31.tar.xz
zen-037d939ec0e1fd213da3e36352ba1bb628d0be31.zip
updated runs-on for release workflow
-rw-r--r--.github/workflows/create_release.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml
index 06cfe082a..755928a7a 100644
--- a/.github/workflows/create_release.yml
+++ b/.github/workflows/create_release.yml
@@ -2,6 +2,7 @@ name: Create Release
env:
VCPKG_VERSION: 2023.07.21
XMAKE_VERSION: 2.8.2 # 2.8.3 breaks fetching of asio package on MacOS ARM
+ WINDOWS_SDK_VERSION: 22621
on:
push:
@@ -10,7 +11,7 @@ on:
jobs:
bundle-windows:
- runs-on: [self-hosted, windows, x64, hv]
+ runs-on: [hv, windows, x64]
timeout-minutes: 25
steps:
@@ -60,7 +61,7 @@ jobs:
path: build/zenserver-win64.zip
bundle-linux:
- runs-on: [self-hosted, linux, x64, hv]
+ runs-on: [hv, linux, x64]
timeout-minutes: 25
steps:
@@ -120,7 +121,7 @@ jobs:
path: build/zenserver-linux.zip
bundle-macos:
- runs-on: [self-hosted, macos, x64, hv]
+ runs-on: [hv, macos, x64]
timeout-minutes: 25
steps:
@@ -179,7 +180,7 @@ jobs:
path: build/zenserver-macos.zip
create-release:
- runs-on: [self-hosted, linux, x64, hv]
+ runs-on: [hv, linux, x64]
timeout-minutes: 5
needs: [bundle-linux, bundle-macos, bundle-windows]