Skip to content

Commit d4d46eb

Browse files
committed
all in one
1 parent 7536224 commit d4d46eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
npx lerna publish --no-private --preid=alpha --dist-tag=alpha ${{ github.event.inputs.version }} --yes ${{ github.event.inputs.force }}
6868
6969
- 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/') }}
7171
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 }}
7373
7474
- name: release stable npm packages to npmjs.org
7575
if: ${{ github.event.inputs.version == 'major' || github.event.inputs.version == 'minor' || github.event.inputs.version == 'patch' }}
@@ -91,7 +91,7 @@ jobs:
9191
echo "::set-output name=VERSION::$VERSION"
9292
9393
- 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' }}
9595
uses: marvinpinto/action-automatic-releases@latest
9696
with:
9797
repo_token: ${{ secrets.CD_PAT }}

0 commit comments

Comments
 (0)