We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f712e73 commit 6fc960cCopy full SHA for 6fc960c
1 file changed
.github/workflows/release.yml
@@ -30,7 +30,7 @@ on:
30
description: 'Dry run? If yes, this workflow will NOT push to remote and NOT publish the extension.'
31
required: true
32
type: choice
33
- default: 'no'
+ default: 'yes'
34
options:
35
- 'yes'
36
- 'no'
@@ -65,7 +65,7 @@ jobs:
65
result-encoding: string
66
script: |
67
const releaseType = process.env.RELEASE_TYPE;
68
- const isPreRelease = title.startsWith('pre')
+ const isPreRelease = releaseType.startsWith('pre')
69
const version = isPreRelease ? String(Math.floor(Date.now() / 1000)) : '';
70
if (isPreRelease) {
71
core.info(`Pre-release patch version number: ${version}`)
0 commit comments