github/build: Fix runner names
Apparently `windows-latest-arm` does not exist and we should use `windows-11-arm`, ditto for `ubuntu-latest-arm` and `ubuntu-24.04-arm`.
This commit is contained in:
parent
84dd89180a
commit
3e98589a76
|
|
@ -12,10 +12,11 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-latest # arm64
|
- macos-latest # arm64
|
||||||
- ubuntu-latest-arm # arm64
|
- ubuntu-24.04-arm # arm64
|
||||||
- ubuntu-latest # x64
|
- ubuntu-latest # x64
|
||||||
- windows-latest-arm # arm64
|
- windows-11-arm # arm64
|
||||||
- windows-latest # x64
|
- windows-latest # x64
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue