浏览代码

prevent automatic overwrite of already released files

Armin Schrenk 1 年之前
父节点
当前提交
5fc981abd3
共有 4 个文件被更改,包括 6 次插入6 次删除
  1. 1 1
      .github/workflows/appimage.yml
  2. 1 1
      .github/workflows/debian.yml
  3. 1 1
      .github/workflows/mac-dmg.yml
  4. 3 3
      .github/workflows/win-exe.yml

+ 1 - 1
.github/workflows/appimage.yml

@@ -173,7 +173,7 @@ jobs:
             cryptomator-*.asc
           if-no-files-found: error
       - name: Publish AppImage on GitHub Releases
-        if: startsWith(github.ref, 'refs/tags/')
+        if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'
         uses: softprops/action-gh-release@v1
         with:
           fail_on_unmatched_files: true

+ 1 - 1
.github/workflows/debian.yml

@@ -145,7 +145,7 @@ jobs:
       
       # If ref is a tag, also upload to GitHub Releases:
       - name: Publish Debian package on GitHub Releases
-        if: startsWith(github.ref, 'refs/tags/')
+        if: startsWith(github.ref, 'refs/tags/') && inputs.dput
         env:
           GITHUB_TOKEN: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
         run: |

+ 1 - 1
.github/workflows/mac-dmg.yml

@@ -256,7 +256,7 @@ jobs:
           path: Cryptomator-*.dmg
           if-no-files-found: error
       - name: Publish dmg on GitHub Releases
-        if: startsWith(github.ref, 'refs/tags/')
+        if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'
         uses: softprops/action-gh-release@v1
         with:
           fail_on_unmatched_files: true

+ 3 - 3
.github/workflows/win-exe.yml

@@ -255,7 +255,7 @@ jobs:
             Cryptomator-*.asc
           if-no-files-found: error
       - name: Publish .msi on GitHub Releases
-        if: startsWith(github.ref, 'refs/tags/')
+        if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'
         uses: softprops/action-gh-release@v1
         with:
           fail_on_unmatched_files: true
@@ -366,7 +366,7 @@ jobs:
             Cryptomator-*.asc
           if-no-files-found: error
       - name: Publish .msi on GitHub Releases
-        if: startsWith(github.ref, 'refs/tags/')
+        if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'
         uses: softprops/action-gh-release@v1
         with:
           fail_on_unmatched_files: true
@@ -416,7 +416,7 @@ jobs:
           local-dir: files/
   notify-winget:
     name: Notify for winget-release
-    if: startsWith(github.ref, 'refs/tags/')
+    if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'published'
     needs: [build-msi]
     runs-on: ubuntu-latest
     steps: