From fa58a2707bda513c3946fe488940afddd7f9f1a6 Mon Sep 17 00:00:00 2001 From: ptahmose Date: Sun, 22 Sep 2024 13:10:29 +0200 Subject: [PATCH] Update artifact path for Windows ARM64 build Modified `cmake.yml` to change the `artifactPath` for the Windows ARM64 build from `${{github.workspace}}/build/release/${name}` to `${{github.workspace}}/arm64build/release/${name}`. This ensures the artifact is correctly stored in the `arm64build` directory. --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e844a176..ea9d63e4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -173,7 +173,7 @@ jobs: mkdir "release/${name}" cp Src/CZICmd/Release/CZIcmd.exe "release/${name}/" echo "artifactName=${name}" >> "$GITHUB_ENV" - echo "artifactPath=${{github.workspace}}/build/release/${name}" >> "$GITHUB_ENV" + echo "artifactPath=${{github.workspace}}/arm64build/release/${name}" >> "$GITHUB_ENV" - name: Upload artifacts (Windows ARM64) if: ${{ (matrix.OS == 'windows-latest') && (matrix.build == 'Release') }}