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 95abe11bd936b6a3e5f93867d31376da8bb11b5f
Author: Per Abich <[email protected]>
AuthorDate: Thu Sep 11 14:11:56 2025 +0200

    fix: update artifact names to use runner.os instead of env.OS since OS does 
not contain the version and thus generats conflicts
---
 .github/workflows/early-access.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/early-access.yaml 
b/.github/workflows/early-access.yaml
index 8c1ba410..1d313079 100644
--- a/.github/workflows/early-access.yaml
+++ b/.github/workflows/early-access.yaml
@@ -178,14 +178,14 @@ jobs:
         if: always()
         uses: actions/upload-artifact@v5
         with:
-          name: daemon-test-logs-${{ env.OS }}-${{ env.ARCH }}
+          name: daemon-test-logs-${{ runner.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-${{ env.OS }}-${{ env.ARCH }}
+          name: mvnd-${{ runner.os }}-${{ env.ARCH }}
           path: dist/target/maven-mvnd-*.zip
 
   site-build:

Reply via email to