gcp config status: fix configName type #14
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 Extension | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install vsce | |
run: npm i -g vsce | |
- name: Install Dependencies | |
run: yarn install | |
- name: Build Extension | |
run: yarn compile | |
- name: Publish Extension | |
run: vsce publish -p ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} |