Skip to content

Commit

Permalink
Update artifact path for Windows ARM64 build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ptahmose committed Sep 22, 2024
1 parent 35fa593 commit fa58a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down

0 comments on commit fa58a27

Please sign in to comment.