Skip to content

Commit

Permalink
Update artifact naming convention in build.yml
Browse files Browse the repository at this point in the history
The code changes in the `build.yml` file modify the naming convention for a Linux MATLAB artifact. Specifically, the artifact name is updated from `MEXlibCZI-linux-x64-$(git describe --always)` to `MATLAB-MEXlibCZI-linux-x64-$(git describe --always)`. This change ensures that the artifact name now includes a clearer indication that it is related to MATLAB.
  • Loading branch information
ptahmose committed Oct 18, 2024
1 parent 177290b commit 28faa27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
shell: bash
run: |
mkdir -p artifacts
name="MEXlibCZI-linux-x64-$(git describe --always)"
name="MATLAB-MEXlibCZI-linux-x64-$(git describe --always)"
mkdir -p artifacts/${name}
cp build/MEXlibCZI/MEXlibCZI.mexa64 artifacts/${name}/
echo "artifactName=${name}" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 28faa27

Please sign in to comment.