cocktailpeanut il y a 2 mois
Parent
commit
9776c07cb0
2 fichiers modifiés avec 34 ajouts et 36 suppressions
  1. 32 34
      .github/workflows/build.yml
  2. 2 2
      package.json

+ 32 - 34
.github/workflows/build.yml

@@ -25,7 +25,7 @@ jobs:
         run: |
           echo "Releasing version $PACKAGE_VERSION"
           gh release create "v$PACKAGE_VERSION" \
-            --title "Release v$PACKAGE_VERSION" \
+            --title "v$PACKAGE_VERSION" \
             --notes "Pinokio version $PACKAGE_VERSION."
   windows:
     if: false
@@ -114,23 +114,22 @@ jobs:
           # If the commit is tagged with a version (e.g. "v1.0.0"),
           # release the app after building
           #release: ${{ startsWith(github.ref, 'refs/tags/v') }}
-          #release: true
-          release: false
-
-      # Release the macOS and Linux binaries
-      - name: Get package.json version
-        id: get_version
-        shell: bash
-        run: |
-          PACKAGE_VERSION=$(node -p "require('./package.json').version")
-          echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
-
-      - name: Publish GitHub Release (Mac)
-        shell: bash
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        run: |
-          gh release upload "v$PACKAGE_VERSION" dist-darwin/*.* --clobber
+          release: true
+
+#      # Release the macOS and Linux binaries
+#      - name: Get package.json version
+#        id: get_version
+#        shell: bash
+#        run: |
+#          PACKAGE_VERSION=$(node -p "require('./package.json').version")
+#          echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
+#
+#      - name: Publish GitHub Release (Mac)
+#        shell: bash
+#        env:
+#          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+#        run: |
+#          gh release upload "v$PACKAGE_VERSION" dist-darwin/*.* --clobber
 
   linux:
     needs: "create-release"
@@ -157,19 +156,18 @@ jobs:
           # If the commit is tagged with a version (e.g. "v1.0.0"),
           # release the app after building
           #release: ${{ startsWith(github.ref, 'refs/tags/v') }}
-          #release: true
-          release: false
-
-      - name: Get package.json version
-        id: get_version
-        shell: bash
-        run: |
-          PACKAGE_VERSION=$(node -p "require('./package.json').version")
-          echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
-
-      - name: Publish GitHub Release (Linux)
-        shell: bash
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        run: |
-          gh release upload "v$PACKAGE_VERSION" dist-linux/*.* --clobber
+          release: true
+
+#      - name: Get package.json version
+#        id: get_version
+#        shell: bash
+#        run: |
+#          PACKAGE_VERSION=$(node -p "require('./package.json').version")
+#          echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
+#
+#      - name: Publish GitHub Release (Linux)
+#        shell: bash
+#        env:
+#          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+#        run: |
+#          gh release upload "v$PACKAGE_VERSION" dist-linux/*.* --clobber

+ 2 - 2
package.json

@@ -1,7 +1,7 @@
 {
   "name": "Pinokio",
   "private": true,
-  "version": "3.19.117",
+  "version": "3.19.118",
   "homepage": "https://pinokio.co",
   "description": "pinokio",
   "main": "main.js",
@@ -122,7 +122,7 @@
   "dependencies": {
     "electron-store": "^8.1.0",
     "electron-window-state": "^5.0.3",
-    "pinokiod": "^3.19.117"
+    "pinokiod": "^3.19.118"
   },
   "devDependencies": {
     "@electron/rebuild": "3.2.10",