[DO NOT MERGE] Jake/testing release #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
pull_request: # REMOVE!! | |
branches: [main] # REMOVE!! | |
push: | |
branches: [main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npx semantic-release --dry-run | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# In case you want to publish to Visual Studio Marketplace | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
# In case you want to publish to Open VSX Registry | |
#OVSX_PAT: ${{ secrets.OVSX_PAT }} |