We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072cb60 commit d6787e5Copy full SHA for d6787e5
.github/workflows/release.yml
@@ -186,8 +186,8 @@ jobs:
186
uses: softprops/action-gh-release@v1
187
if: startsWith(github.ref, 'refs/tags/v')
188
with:
189
- draft: contains(github.ref, 'draft')
190
- prerelease: contains(github.ref, 'draft')
+ draft: ${{contains(github.ref, 'draft')}}
+ prerelease: ${{contains(github.ref, 'draft')}}
191
files: |
192
${{ steps.package.outputs.SLANG_BINARY_ARCHIVE_ZIP }}
193
${{ steps.package.outputs.SLANG_BINARY_ARCHIVE_TAR }}
0 commit comments