Skip to content

Commit 3149ec2

Browse files
authored
ci: undo reversal of logic for prerelease status (#204)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent d8b0804 commit 3149ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ jobs:
302302
generate_release_notes: true,
303303
name: process.env.RELEASE_TAG,
304304
owner: context.repo.owner,
305-
prerelease: ${{ (startsWith(github.ref, 'refs/tags/') && ! contains(github.ref, '-pre-')) && true || false }},
305+
prerelease: ${{ (startsWith(github.ref, 'refs/tags/') && contains(github.ref, '-pre-')) && true || false }},
306306
repo: context.repo.repo,
307307
tag_name: process.env.RELEASE_TAG,
308308
});

0 commit comments

Comments
 (0)