Skip to content

Commit

Permalink
build: "Invoke-Installer" -> "Invoke Community Edition"
Browse files Browse the repository at this point in the history
- rename package.json things
- update build workflows
  • Loading branch information
psychedelicious committed Dec 23, 2024
1 parent 923d44a commit 383f5f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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"
},
Expand All @@ -123,7 +123,7 @@
],
"linux": {
"target": "AppImage",
"artifactName": "${productName}-linux-${arch}.${ext}",
"artifactName": "${productName}.${ext}",
"icon": "assets/icons/icon.png"
},
"mac": {
Expand All @@ -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
Expand Down

0 comments on commit 383f5f8

Please sign in to comment.