Skip to content

Add missing vscode command to configure the extension (f.e. the api key) #20

Add missing vscode command to configure the extension (f.e. the api key)

Add missing vscode command to configure the extension (f.e. the api key) #20

Workflow file for this run

name: Deploy Extension
on:
workflow_dispatch:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ vars.NODE_VERSION }}
- run: yarn
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v0
with:
pat: ${{ secrets.MARKETPLACE_ACCESS_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
yarn: true
dryRun: ${{ env.DRY_RUN == 'True' }}
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v0
with:
pat: ${{ secrets.OPEN_VSX_MARKETPLACE_ACCESS_TOKEN }}
yarn: true
dryRun: ${{ env.DRY_RUN == 'True' }}
registryUrl: https://open-vsx.org