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 94063f0798966a207bb9f549bc8f30cb048c5f06 Author: Per Abich <[email protected]> AuthorDate: Fri Sep 12 22:54:13 2025 +0200 fix: removed macos-latest from the matrix as it is the same as macos-14. Also changed the name for the artifacts to upload to have the macos version so they don't collide --- .github/workflows/early-access.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/early-access.yaml b/.github/workflows/early-access.yaml index 1d313079..a54ee65e 100644 --- a/.github/workflows/early-access.yaml +++ b/.github/workflows/early-access.yaml @@ -80,7 +80,7 @@ jobs: fail-fast: false matrix: # binaries wanted: linux amd64, mac M1, mac intel, windows x86 - os: [ ubuntu-latest, macos-latest, macos-13, macos-14, windows-latest ] + os: [ ubuntu-latest, macos-13, macos-14, windows-latest ] arch: [ x64, arm64 ] exclude: - os: macos-13 @@ -178,14 +178,14 @@ jobs: if: always() uses: actions/upload-artifact@v5 with: - name: daemon-test-logs-${{ runner.os }}-${{ env.ARCH }} + name: daemon-test-logs-${{ matrix.os }}-${{ env.ARCH }} path: integration-tests/target/mvnd-tests/**/daemon*.log include-hidden-files: 'true' - name: 'Upload artifact' uses: actions/upload-artifact@v5 with: - name: mvnd-${{ runner.os }}-${{ env.ARCH }} + name: mvnd-${{ matrix.os }}-${{ env.ARCH }} path: dist/target/maven-mvnd-*.zip site-build:
