ci: update submodules #65
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: Update VSCode extension | |
on: [push, workflow_dispatch] | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Bumping version | |
uses: jpb06/bump-package@latest | |
with: | |
major-keywords: BREAKING CHANGE | |
minor-keywords: feat | |
should-default-to-patch: true | |
- run: yarn install --frozen-lockfile | |
- name: Publish to Visual Studio Marketplace | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} | |
registryUrl: https://marketplace.visualstudio.com | |
yarn: true |