Procházet zdrojové kódy

fix(ci): fix typo, add missing checksum

Andelf před 4 roky
rodič
revize
ed8850111d
1 změnil soubory, kde provedl 11 přidání a 3 odebrání
  1. 11 3
      .github/workflows/build-desktop-release.yml

+ 11 - 3
.github/workflows/build-desktop-release.yml

@@ -379,6 +379,13 @@ jobs:
           name: logseq-win64-builds
           name: logseq-win64-builds
           path: ./
           path: ./
 
 
+      - name: Generate SHA256 checksums
+        run: |
+          sha256sum *-darwin-* > SHA256SUMS.txt
+          sha256sum *-win-* >> SHA256SUMS.txt
+          sha256sum *-linux-* >> SHA256SUMS.txt
+          cat SHA256SUMS.txt
+
       - name: List files
       - name: List files
         run: ls -rl
         run: ls -rl
 
 
@@ -388,12 +395,13 @@ jobs:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
         with:
         with:
           tag_name: nightly
           tag_name: nightly
-          name: 'Desktop App Nightly Relase $$'
+          name: 'Desktop APP Nightly Release $$'
           draft: false
           draft: false
           prerelease: ${{ (github.event_name == 'workflow_dispatch' && github.event.inputs.is-pre-release) || (github.event_name == 'schedule')}}
           prerelease: ${{ (github.event_name == 'workflow_dispatch' && github.event.inputs.is-pre-release) || (github.event_name == 'schedule')}}
-          body: "This is a nightly release of the Logseq desktop app."
+          body: |
+            This is a nightly release of the Logseq desktop app.
+            It's unstable compared to the official releases, **use it with caution**!
           files: |
           files: |
-            ./VERSION
             ./SHA256SUMS.txt
             ./SHA256SUMS.txt
             ./*.zip
             ./*.zip
             ./*.dmg
             ./*.dmg