Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 13, 2024
1 parent 8496f1d commit 5a463c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a463c5

Please sign in to comment.