Remove explicit whitespace.separator
prefix from block-scalar
#18
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: Publish Pre-release Extension | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '**.json' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install VSCE | |
run: npm i @vscode/vsce -g | |
- name: Setup Github Actions | |
run: | | |
git config --global user.name "RedCMD" | |
git config --global user.email "[email protected]" | |
git add . | |
git diff-index --quiet HEAD || git commit -m "Sync Github Actions" | |
- name: Publish Pre-release | |
run: | | |
vsce publish patch --pre-release -p ${{ secrets.VSCE_PAT }} | |
git push |