Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
github/build: Fix runner names
Merged lorenz opened 6 months ago

Apparently windows-latest-arm does not exist and we should use windows-11-arm, ditto for ubuntu-latest-arm and ubuntu-24.04-arm.

1 file changed +6 -5 84dd8918 3e98589a
modified .github/workflows/build.yml
@@ -11,11 +11,12 @@ jobs:
      fail-fast: false
      matrix:
        os:
-
         - macos-latest       # arm64
-
         - ubuntu-latest-arm  # arm64
-
         - ubuntu-latest      # x64
-
         - windows-latest-arm # arm64
-
         - windows-latest     # x64
+
          - macos-latest      # arm64
+
          - ubuntu-24.04-arm  # arm64
+
          - ubuntu-latest     # x64
+
          - windows-11-arm    # arm64
+
          - windows-latest    # x64
+

    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2