File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 67
67
npx lerna publish --no-private --preid=alpha --dist-tag=alpha ${{ github.event.inputs.version }} --yes ${{ github.event.inputs.force }}
68
68
69
69
- name : release rc npm packages to npmjs.org
70
- if : ${{ github.event.inputs.version == 'prerelease' && startsWith(github.ref, 'refs/heads/release/') }} ${{ github.event.inputs.force }}
70
+ if : ${{ github.event.inputs.version == 'prerelease' && startsWith(github.ref, 'refs/heads/release/') }}
71
71
run : |
72
- npx lerna publish --no-private --preid=rc --dist-tag=rc prerelease --yes
72
+ npx lerna publish --no-private --preid=rc --dist-tag=rc prerelease --yes ${{ github.event.inputs.force }}
73
73
74
74
- name : release stable npm packages to npmjs.org
75
75
if : ${{ github.event.inputs.version == 'major' || github.event.inputs.version == 'minor' || github.event.inputs.version == 'patch' }}
91
91
echo "::set-output name=VERSION::$VERSION"
92
92
93
93
- name : release VSCode extension to github
94
- if : ${{ steps.extension-checker.outputs.CHANGED == 'true' }}
94
+ if : ${{ steps.extension-checker.outputs.CHANGED == 'true' || github.event.inputs.force == '--force-publish' }}
95
95
uses : marvinpinto/action-automatic-releases@latest
96
96
with :
97
97
repo_token : ${{ secrets.CD_PAT }}
You can’t perform that action at this time.
0 commit comments