Skip to content

Commit b8daa1b

Browse files
committed
change release default value
1 parent 6784a6a commit b8daa1b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ on:
2424
description: "Publish on Visual Studio Marketplace?"
2525
required: true
2626
type: choice
27-
default: "yes"
27+
default: "no"
2828
options:
2929
- "yes"
3030
- "no"
3131
publishOpenVSX:
3232
description: "Publish on Open VSX Registry?"
3333
required: true
3434
type: choice
35-
default: "yes"
35+
default: "no"
3636
options:
3737
- "yes"
3838
- "no"
@@ -90,10 +90,9 @@ jobs:
9090
if: ${{ github.event.inputs.releaseChannel == 'stable' }}
9191
- name: Version Package
9292
run: |
93-
git stash
93+
git checkout -- package.json
9494
npm version $RELEASE_VERSION
9595
git tag -a $RELEASE_VERSION -m "$RELEASE_VERSION"
96-
git stash pop
9796
- name: Package Extension (Edge)
9897
if: ${{ github.event.inputs.releaseChannel == 'edge' }}
9998
run: |

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ _site
44
Gemfile.lock
55
**/*.vsix
66
.vscode-test
7-
.wdio-vscode-service
7+
.wdio-vscode-service
8+
*-CHANGELOG.txt

.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.vscode/**
22
.vscode-test/**
3+
.wdio-vscode-service/**
34
out/test/**
45
test/**
56
src/**

0 commit comments

Comments
 (0)