소스 검색

attempt to trigger build when drafting a release

Sebastian Stenzel 3 년 전
부모
커밋
e67772c9a6
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      .github/workflows/appimage.yml
  2. 1 1
      .github/workflows/debian.yml
  3. 1 1
      .github/workflows/mac-dmg.yml
  4. 1 1
      .github/workflows/win-exe.yml

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

@@ -2,7 +2,7 @@ name: Build AppImage
 
 on:
   release:
-    types: [published]
+    types: [created]
   workflow_dispatch:
 
 env:

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

@@ -2,7 +2,7 @@ name: Build Debian Package
 
 on:
   release:
-    types: [published]
+    types: [created]
   workflow_dispatch:
     inputs:
       dput:

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

@@ -2,7 +2,7 @@ name: Build macOS .dmg
 
 on:
   release:
-    types: [published]
+    types: [created]
   workflow_dispatch:
 
 env:

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

@@ -2,7 +2,7 @@ name: Build Windows Installer
 
 on:
   release:
-    types: [published]
+    types: [created]
   workflow_dispatch:
 
 env: