cocktailpeanut 1 month ago
parent
commit
a977e4cb65
2 changed files with 6 additions and 7 deletions
  1. 3 3
      .github/workflows/build.yml
  2. 3 4
      package.json

+ 3 - 3
.github/workflows/build.yml

@@ -98,8 +98,8 @@ jobs:
       - name: Build final installer
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-          CSC_IDENTITY_AUTO_DISCOVERY: "false"   # disable any auto code-sign discovery
-          DISABLE_CODE_SIGNING: "true"           # electron-builder respects this to skip signing
+#          CSC_IDENTITY_AUTO_DISCOVERY: "false"   # disable any auto code-sign discovery
+#          DISABLE_CODE_SIGNING: "true"           # electron-builder respects this to skip signing
         run: |
           #yarn run electron-builder --win --prepackaged dist-win32/win-unpacked --publish never
           yarn run electron-builder --win --prepackaged dist-win32/win-unpacked --publish always
@@ -120,7 +120,7 @@ jobs:
 #          echo "Releasing version $PACKAGE_VERSION"
 #          #gh release create "v$PACKAGE_VERSION" ./signed-windows/*.exe \
 #
-#          gh release upload "v$PACKAGE_VERSION" ./dist-win32/*.exe \
+#          gh release upload "v$PACKAGE_VERSION" ./dist-win32/*.exe .dist-win32/latest.yml ./dist-win32/*.exe.blockmap
 #          #gh release create "v$PACKAGE_VERSION" ./dist-win32/*.exe \
 #          #  --title "Release v$PACKAGE_VERSION" \
 #          #  --notes "Pinokio version $PACKAGE_VERSION."

+ 3 - 4
package.json

@@ -1,7 +1,7 @@
 {
   "name": "Pinokio",
   "private": true,
-  "version": "3.33.0",
+  "version": "3.35.0",
   "homepage": "https://pinokio.co",
   "description": "pinokio",
   "main": "main.js",
@@ -24,7 +24,6 @@
   "build": {
     "appId": "computer.pinokio",
     "afterPack": "chmod.js",
-    "afterSign": "electron-builder-notarize",
     "directories": {
       "output": "dist-${platform}"
     },
@@ -61,6 +60,7 @@
     ],
     "mac": {
       "category": "utility",
+      "afterSign": "electron-builder-notarize",
       "target": [
         {
           "target": "default",
@@ -100,7 +100,6 @@
     },
     "win": {
       "artifactName": "Pinokio.${ext}",
-      "forceCodeSigning": false,
       "target": [
         {
           "target": "nsis",
@@ -117,7 +116,7 @@
     "electron-store": "^8.1.0",
     "electron-updater": "^6.6.2",
     "electron-window-state": "^5.0.3",
-    "pinokiod": "^3.33.0"
+    "pinokiod": "^3.35.0"
   },
   "devDependencies": {
     "@electron/rebuild": "3.2.10",