diff options
| author | Stefan Boberg <[email protected]> | 2024-03-20 12:30:55 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2024-03-20 12:30:55 +0100 |
| commit | 62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6 (patch) | |
| tree | 0c03d356e8118abeb20ec298771812442ed9a6b7 /.github/workflows/create_release.yml | |
| parent | Enabled signing on windows agents again (#12) (diff) | |
| download | zen-62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6.tar.xz zen-62aa21f3eff2ccb6d169b9f704d4ef62bd8dc0a6.zip | |
remove hv tags on actions since they are no longer useful
we use `zen` tags to discriminate now instead
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 9dffc5853..ecf786d59 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, zen] + runs-on: [windows, x64, zen] timeout-minutes: 25 steps: @@ -59,7 +59,7 @@ jobs: path: build/zenserver-win64.zip bundle-linux: - runs-on: [hv, linux, x64, zen] + runs-on: [linux, x64, zen] timeout-minutes: 25 steps: @@ -119,7 +119,7 @@ jobs: path: build/zenserver-linux.zip bundle-macos: - runs-on: [hv, macos, x64, zen] + runs-on: [macos, x64, zen] timeout-minutes: 25 steps: @@ -179,7 +179,7 @@ jobs: path: build/zenserver-macos.zip create-release: - runs-on: [hv, linux, x64, zen] + runs-on: [linux, x64, zen] timeout-minutes: 5 needs: [bundle-linux, bundle-macos, bundle-windows] |