Skip to content

Commit

Permalink
Another approach
Browse files Browse the repository at this point in the history
  • Loading branch information
ebmifa committed Jul 28, 2023
1 parent 5558789 commit 35348d6
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,20 @@ jobs:
# GITHUB_TOKEN: ${{ secrets.GH_RELEASE_BUILDS_TOKEN }}

build-aarch64-apple-darwin:
runs-on: [macos-latest-xl]
steps:
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: true
matrix:
config:
- {
name: "macOS M1 Latest Clang",
artifact: "njord-macos-m1",
os: macos-latest-xl,
cc: "clang",
architecture: arm64,
}

steps:
- name: Checking out ${{ env.sui_tag }}
if: ${{ env.sui_tag != 'main' }}
uses: actions/checkout@v3
Expand Down

0 comments on commit 35348d6

Please sign in to comment.