From ec233e30fb523decc32d98282bb24941c6730632 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 28 Mar 2024 16:26:28 +1100 Subject: [PATCH] ci: fix name of installer build artifact The build workflow was naming the file `InvokeAI-installer-v4.0.0rc6.zip.zip` (note the double ".zip"). This caused some confusion when creating releases on GitHub. Name the build artifact `installer`. This results in `installer.zip`, which it's clear needs to be extracted first before uploading to the GH release. --- .github/workflows/build-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 9d6d42c8d9..b517751960 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -41,5 +41,5 @@ jobs: - name: upload installer artifact uses: actions/upload-artifact@v4 with: - name: ${{ steps.create_installer.outputs.INSTALLER_FILENAME }} + name: installer path: ${{ steps.create_installer.outputs.INSTALLER_PATH }}