feat(#182): enable references,codelens,rename,diagnostics only for mo… #101
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: Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Create Release PR or Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-tags: true | |
fetch-depth: 0 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.10.0 | |
- name: Install Dependencies | |
run: npm install | |
- name: Check version | |
id: check_version | |
run: ./scripts/check_version | |
continue-on-error: true | |
- name: Create Release Pull Request | |
id: changesets | |
uses: changesets/action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | |
- name: Publish If | |
id: publish | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
OPENVSX_PAT: ${{ secrets.OPENVSX_PAT }} | |
if: | |
steps.check_version.outcome == 'success' | |
# You can do something when a publish should happen. | |
run: npm run publish:vscode && npm run publish:openvsx -- -p ${{ secrets.OPENVSX_PAT }} | |
- name: Tag Version | |
id: tag_version | |
if: steps.publish.outcome == 'success' | |
uses: Klemensas/[email protected] | |
with: | |
GITHUB_TOKEN: "${{ secrets.MY_GITHUB_TOKEN }}" | |
tag_prefix: "v" |