diff options
author | Remy Raes <contact@remyraes.com> | 2022-09-14 07:33:50 +0200 |
---|---|---|
committer | Remy Raes <contact@remyraes.com> | 2022-09-14 07:33:50 +0200 |
commit | d01d39a622320062f180841950ad23673809a292 (patch) | |
tree | 365a0347dbf5f613f2cc6b13efe5d6c2525e4867 | |
parent | ab7cdb77f1c4bd70f32f635c931da66146fb0bd5 (diff) | |
download | Viper-d01d39a622320062f180841950ad23673809a292.tar.gz Viper-d01d39a622320062f180841950ad23673809a292.zip |
fix: don't set published release to draft
-rw-r--r-- | .github/workflows/release_builds.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release_builds.yml b/.github/workflows/release_builds.yml index 893bf27..70afddd 100644 --- a/.github/workflows/release_builds.yml +++ b/.github/workflows/release_builds.yml @@ -24,6 +24,7 @@ jobs: with: file: "dist/*.exe;dist/latest.yml" release_id: ${{ github.event.release.id }} + draft: false build-linux: name: "Create Linux release builds" runs-on: "ubuntu-latest" @@ -45,3 +46,4 @@ jobs: with: file: "dist/*.AppImage;dist/*.tar.gz;dist/*.deb;dist/*.rpm" release_id: ${{ github.event.release.id }} + draft: false |