|
@@ -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:
|