diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c03f5a..a4d5cf2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,8 +43,8 @@ jobs: - name: Publish artifact - GUI uses: actions/upload-artifact@v4 with: - name: Invoke-Installer-linux-x86_64.AppImage - path: dist/Invoke-Installer-linux-x86_64.AppImage + name: 'Invoke Community Edition.AppImage' + path: 'dist/Invoke Community Edition.AppImage' build-macos: runs-on: macos-latest @@ -75,8 +75,8 @@ jobs: - name: Publish artifact - GUI uses: actions/upload-artifact@v4 with: - name: Invoke-Installer-mac-arm64.dmg - path: dist/Invoke-Installer-mac-arm64.dmg + name: 'Invoke Community Edition.dmg' + path: 'dist/Invoke Community Edition.dmg' build-windows: runs-on: windows-latest @@ -105,5 +105,5 @@ jobs: - name: Publish artifact - GUI - UNSIGNED uses: actions/upload-artifact@v4 with: - name: Invoke-Installer-windows-x64-UNSIGNED.exe - path: dist/Invoke-Installer-windows-x64.exe + name: 'Invoke Community Edition.exe - UNSIGNED' + path: 'dist/Invoke Community Edition.exe' diff --git a/package.json b/package.json index e408d86..af0b1a0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "invoke-installer", - "productName": "invoke-installer", - "version": "1.0.0", + "name": "invoke-community-edition", + "productName": "Invoke Community Edition", + "version": "1.1.0", "description": "Invoke Community Edition", "main": ".vite/build/main.js", "engines": { @@ -106,8 +106,8 @@ "use-stick-to-bottom": "^1.0.42" }, "build": { - "appId": "com.invoke.installer", - "productName": "Invoke-Installer", + "appId": "com.invoke.invoke-community-edition", + "productName": "Invoke Community Edition", "directories": { "output": "dist" }, @@ -123,7 +123,7 @@ ], "linux": { "target": "AppImage", - "artifactName": "${productName}-linux-${arch}.${ext}", + "artifactName": "${productName}.${ext}", "icon": "assets/icons/icon.png" }, "mac": { @@ -133,12 +133,12 @@ "arm64" ] }, - "artifactName": "${productName}-mac-${arch}.${ext}", + "artifactName": "${productName}.${ext}", "icon": "assets/icons/icon.icns" }, "win": { "target": "portable", - "artifactName": "${productName}-Windows-${arch}.${ext}", + "artifactName": "${productName}.${ext}", "icon": "assets/icons/icon.ico" }, "publish": null