Update dependencies #31
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: Publish VS Code Extension | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'apps/vscode/**' | |
jobs: | |
publish: | |
if: github.repository_owner == 'timothymiller' | |
name: Publish VS Code Extension | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# - name: Check version changes | |
# uses: EndBug/version-check@v1 | |
# id: check | |
# with: | |
# file-name: ./apps/vscode/package.json | |
# - name: Version update detected | |
# if: steps.check.outputs.changed == 'true' | |
# run: 'echo "Version change found! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"' | |
- name: Setup Node.js for NPM | |
# if: steps.check.outputs.changed == 'true' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: 📥 Monorepo install | |
# if: steps.check.outputs.changed == 'true' | |
uses: ./.github/actions/pnpm-install | |
- name: Publish | |
# if: steps.check.outputs.changed == 'true' | |
run: cd apps/vscode && pnpm dlx @vscode/vsce publish --no-dependencies -p ${{ secrets.VSCE_TOKEN }} |