feat: add shell highlight hover, document symbol and link feature to … #23
  
    
      This file contains hidden or 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: Release | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| release-type: node | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@v4 | |
| if: ${{ steps.release.outputs.release_created }} | |
| - uses: actions/setup-node@v4 | |
| if: ${{ steps.release.outputs.release_created }} | |
| with: | |
| node-version: 18 | |
| - name: Install dependencies | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | |
| npm install && npm ci | |
| - name: Build extension | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: npm run build | |
| - name: Publish to Visual Studio Marketplace | |
| if: ${{ steps.release.outputs.release_created }} | |
| uses: HaaLeo/publish-vscode-extension@v1 | |
| with: | |
| pat: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} | |
| registryUrl: https://marketplace.visualstudio.com | |
| - name: Publish to Open VSX Registry | |
| if: ${{ steps.release.outputs.release_created }} | |
| uses: HaaLeo/publish-vscode-extension@v1 | |
| with: | |
| pat: ${{ secrets.OPEN_VSX_TOKEN }} |