This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch linux-arm64 in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit 00b44fffe35c146c028c420411c3839f144e08b1 Author: Per Abich <[email protected]> AuthorDate: Wed Mar 26 11:00:11 2025 +0100 Adjust platform matrix in release.yaml to exclude macOS 13 and 14 for arm64 architecture --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 123c3b65..af1d51f7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,10 +35,10 @@ jobs: fail-fast: true matrix: # binaries wanted: linux amd64, mac intel, mac M1, windows x86 - os: [ ubuntu-latest, macos-latest, macos-13, macos-14, windows-latest ] + os: [ ubuntu-latest, macos-latest, macos-13, windows-latest ] arch: [ x64, arm64 ] exclude: - - os: macos-13 + - os: [ macos-13, macos-14 ] arch: arm64 - os: windows-latest arch: arm64
