From 8f44c12b643d97de83449cdc94978f109ecbee61 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sat, 29 Aug 2020 19:05:07 +0200 Subject: [PATCH] fix pre-release flag --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 960da3fe..1ebbc777 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -71,7 +71,7 @@ jobs: uses: softprops/action-gh-release@v1 with: body: ${{ steps.release_notes.outputs.release_notes }} - prerelease: contains(github.ref, '-') + prerelease: ${{ contains(github.ref, '-') }} files: | ./release/*.tar.gz ./release/*.zip