fix: update artifact names to use runner.os instead of env.OS since OS does not contain the version and thus generats conflicts

This commit is contained in:
Per Abich
2025-09-11 14:11:56 +02:00
committed by Guillaume Nodet
parent cab6c69d3d
commit 95abe11bd9

View File

@@ -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: