add working-directories #8
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
on: | ||
push: | ||
branches: | ||
- vscode_publish | ||
tags: | ||
- "*" | ||
name: Deploy Extension | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
working-directory: ./tools/vscode | ||
Check failure on line 15 in .github/workflows/vscode.yaml GitHub Actions / Deploy ExtensionInvalid workflow file
|
||
with: | ||
node-version: 21 | ||
- name: Node Clean Install | ||
working-directory: ./tools/vscode | ||
run: npm ci | ||
- name: Publish to Visual Studio Marketplace | ||
working-directory: ./tools/vscode | ||
uses: HaaLeo/publish-vscode-extension@v1 | ||
with: | ||
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} | ||
registryUrl: https://marketplace.visualstudio.com | ||
skipDuplicate: true |