Skip to content

Commit

Permalink
attempt 5
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 13, 2024
1 parent f20c605 commit 8496f1d
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,22 @@ jobs:
name: Build and Release Dash Evo Tool
strategy:
matrix:
platform:
- { name: "linux-amd64", runner: "self-hosted", runner_tags: "self-hosted Linux x64", target: "x86_64-unknown-linux-gnu" }
- { name: "linux-arm64", runner: "self-hosted", runner_tags: "self-hosted Linux ARM64", target: "aarch64-unknown-linux-gnu" }
- { name: "macos-amd64", runner: "macos-latest", target: "x86_64-apple-darwin" }
- { name: "macos-arm64", runner: "macos-latest", target: "aarch64-apple-darwin" }
platform:
- name: "linux-amd64"
runner_tags: ["self-hosted", "Linux", "x64"] # Array of tags for AMD64
target: "x86_64-unknown-linux-gnu"
- name: "linux-arm64"
runner_tags: ["self-hosted", "Linux", "ARM64"] # Array of tags for ARM64
target: "aarch64-unknown-linux-gnu"
- name: "macos-amd64"
runner: "macos-latest"
target: "x86_64-apple-darwin"
- name: "macos-arm64"
runner: "macos-latest"
target: "aarch64-apple-darwin"

runs-on: ${{ matrix.runner_tags || matrix.runner }}

runs-on: ${{ matrix.runner_tags || matrix.runner }} # Use runner_tags for self-hosted or GitHub runner for macOS

steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down

0 comments on commit 8496f1d

Please sign in to comment.