Skip to content

Commit

Permalink
Fix github action syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox committed Jun 5, 2024
1 parent 686a7fc commit 1562d29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
arch:
- { arch: x86_64, runner: macos-latest-large }
- { arch: arm64, runner: macos-latest-xlarge }
runs-on: ${{ matrix.runner }}
runs-on: ${{ matrix.arch.runner }}

steps:
- name: Checkout
Expand All @@ -115,13 +115,13 @@ jobs:
with:
distribution: zulu
java-version: ${{ env.RELEASE_JAVA_VERSION }}
architecture: ${{ matrix.arch }}
architecture: ${{ matrix.arch.arch }}

- name: Install OpenSSL ${{ matrix.libssl }}
run: brew install openssl@${{ matrix.libssl }}

- name: Build natives with CMake
run: resources/mac-cmake.sh "${{ steps.install_java.outputs.path }}" "${{ matrix.arch }}" "${{ matrix.libssl }}"
run: resources/mac-cmake.sh "${{ steps.install_java.outputs.path }}" "${{ matrix.arch.arch }}" "${{ matrix.libssl }}"

- name: Upload lib as artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 1562d29

Please sign in to comment.