From 28faa27751cbe5c7597f43d4eb780db11a1168e8 Mon Sep 17 00:00:00 2001 From: ptahmose Date: Fri, 18 Oct 2024 12:55:23 +0200 Subject: [PATCH] Update artifact naming convention in build.yml 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. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 933dbdf..c92a6aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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"