Skip to content

Commit

Permalink
Fix for release draft logic
Browse files Browse the repository at this point in the history
  • Loading branch information
warmans committed Jul 4, 2024
1 parent ada0d85 commit d5fa91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/server-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
uses: actions/create-release@v1
id: create_release
with:
draft: contains( env.GIT_TAG, '.rc' ) #todo: is there no regex match?
draft: ${{ contains( env.GIT_TAG, '.rc' ) }} #todo: is there no regex match?
prerelease: false
release_name: ${{ env.GIT_TAG }}
tag_name: ${{ env.GIT_TAG }}
Expand Down

0 comments on commit d5fa91f

Please sign in to comment.