From 5a463c59429caacbcab365b4def7045e66761372 Mon Sep 17 00:00:00 2001 From: ktechmidas Date: Sun, 13 Oct 2024 19:07:51 +0300 Subject: [PATCH] . --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e61594b..8925cc1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,18 +22,22 @@ jobs: platform: - name: "linux-amd64" runner_tags: ["self-hosted", "Linux", "x64"] # Array of tags for AMD64 + runner: null target: "x86_64-unknown-linux-gnu" - name: "linux-arm64" runner_tags: ["self-hosted", "Linux", "ARM64"] # Array of tags for ARM64 + runner: null target: "aarch64-unknown-linux-gnu" - name: "macos-amd64" + runner_tags: null runner: "macos-latest" target: "x86_64-apple-darwin" - name: "macos-arm64" + runner_tags: null runner: "macos-latest" target: "aarch64-apple-darwin" - runs-on: ${{ matrix.runner_tags || matrix.runner }} + runs-on: ${{ matrix.runner_tags != null ? matrix.runner_tags : matrix.runner }} steps: - name: Check out code