diff options
author | Stephan Dilly <dilly.stephan@gmail.com> | 2020-08-29 19:05:07 +0200 |
---|---|---|
committer | Stephan Dilly <dilly.stephan@gmail.com> | 2020-08-29 19:05:07 +0200 |
commit | 8f44c12b643d97de83449cdc94978f109ecbee61 (patch) | |
tree | cb6f1311b32d6a78ddc4ffa97e2124a36e67ee4f | |
parent | d0ac0a3063e6626dc16c463b3fc3e491d40c7caa (diff) |
fix pre-release flagv0.10.0
-rw-r--r-- | .github/workflows/cd.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |