Skip to content

Commit

Permalink
change release default value
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Aug 30, 2022
1 parent 6784a6a commit b8daa1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ on:
description: "Publish on Visual Studio Marketplace?"
required: true
type: choice
default: "yes"
default: "no"
options:
- "yes"
- "no"
publishOpenVSX:
description: "Publish on Open VSX Registry?"
required: true
type: choice
default: "yes"
default: "no"
options:
- "yes"
- "no"
Expand Down Expand Up @@ -90,10 +90,9 @@ jobs:
if: ${{ github.event.inputs.releaseChannel == 'stable' }}
- name: Version Package
run: |
git stash
git checkout -- package.json
npm version $RELEASE_VERSION
git tag -a $RELEASE_VERSION -m "$RELEASE_VERSION"
git stash pop
- name: Package Extension (Edge)
if: ${{ github.event.inputs.releaseChannel == 'edge' }}
run: |
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ _site
Gemfile.lock
**/*.vsix
.vscode-test
.wdio-vscode-service
.wdio-vscode-service
*-CHANGELOG.txt
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.vscode/**
.vscode-test/**
.wdio-vscode-service/**
out/test/**
test/**
src/**
Expand Down

0 comments on commit b8daa1b

Please sign in to comment.