Skip to content

Commit

Permalink
use release drafts on releases and not pre-releases
Browse files Browse the repository at this point in the history
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 940c0a7..81dcab8 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -30,6 +30,7 @@ jobs:
         with:
           repo_token: ${{ secrets.GITHUB_TOKEN }}
           prerelease: false
+          draft: true
           files: |
             build/bin/Release/*.exe

@@ -41,6 +42,5 @@ jobs:
           automatic_release_tag: latest
           title: Development build
           prerelease: true
-          draft: true
           files: |
             build/bin/Release/*.exe
\ No newline at end of file
  • Loading branch information
dumbasPL committed Sep 29, 2023
1 parent 89f1c9d commit 436fcaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
draft: true
files: |
build/bin/Release/*.exe
Expand All @@ -41,6 +42,5 @@ jobs:
automatic_release_tag: latest
title: Development build
prerelease: true
draft: true
files: |
build/bin/Release/*.exe

0 comments on commit 436fcaf

Please sign in to comment.