Skip to content

Commit

Permalink
chore: run on GH runners natively
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 11, 2024
1 parent 1125b37 commit b1a0970
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,27 @@ on:
jobs:
build-and-release:
name: Build and Release Dash Evo Tool
runs-on: ["self-hosted", "ubuntu-platform"]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [self-hosted]
os: [ubuntu-latest, macos-latest]
arch: [amd64, arm64]
include:
- platform: linux/amd64
runner: ["self-hosted", "linux", "amd64", "ubuntu-platform"]
os: ubuntu-latest
arch: amd64
target: x86_64-unknown-linux-gnu
- platform: linux/arm64
runner: ["self-hosted", "linux", "arm64", "ubuntu-platform"]
os: ubuntu-latest
arch: arm64
target: aarch64-unknown-linux-gnu
- platform: macos/amd64
runner: ["self-hosted", "macOS", "amd64", "macos-platform"]
os: macos-latest
arch: amd64
target: x86_64-apple-darwin
- platform: macos/arm64
runner: ["self-hosted", "macOS", "arm64", "macos-platform"]
os: macos-latest
arch: arm64
target: aarch64-apple-darwin
steps:
- name: Check out code
Expand Down

0 comments on commit b1a0970

Please sign in to comment.