File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,23 +20,28 @@ jobs:
20
20
with :
21
21
github-token : ${{ secrets.github_token }}
22
22
23
- - name : Create Release
23
+ - name : Create Release
24
24
uses : ncipollo/release-action@v1
25
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
25
26
with :
26
27
tag : ${{ steps.changelog.outputs.tag }}
27
28
body : ${{ steps.changelog.outputs.clean_changelog }}
28
29
29
30
- name : Setup Node.js environment
30
31
32
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
31
33
with :
32
34
node-version : 18
33
35
registry-url : https://registry.npmjs.org/
34
36
35
37
- name : Install the dependencies
38
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
36
39
run : npm i
37
40
38
41
- name : Install vsce
42
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
39
43
run : npm i -g vsce
40
44
41
45
- name : Publish
46
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
42
47
run : vsce publish -p ${{ secrets.VSCE_PAT }}
You can’t perform that action at this time.
0 commit comments