From 8e97cf5c96e0724702c1adcdf999be0dbbca92a1 Mon Sep 17 00:00:00 2001 From: Ahmed Magdy Date: Sat, 13 Apr 2024 17:24:54 +0300 Subject: [PATCH] Update artifact name in build.yml The commit modifies the name of the build artifact in `build.yml`. The artifact name is now appended with the `.msi` extension, ensuring it has the correct file extension for an MSI file. The artifact path has also been updated accordingly. --- .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 7a3a56e..747d767 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,5 +72,5 @@ jobs: - name: 📤 Upload a Build Artifact uses: actions/upload-artifact@v4.3.1 with: - name: ${{env.MSI_FILE_NAME}} + name: ${{env.MSI_FILE_NAME}}.msi path: ${{env.MSI_PROJECT_OUTPUT}}/${{env.MSI_FILE_NAME}}.msi