chore: release v0.0.64 #59
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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
permissions: | |
id-token: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
registry-url: 'https://registry.npmjs.org' | |
- run: npx changelogithub | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Setup | |
run: npm i -g pnpm@8 | |
- name: Install Dependencies | |
run: pnpm i | |
- name: PNPM build | |
run: pnpm run build | |
- name: Publish to NPM | |
run: pnpm publish --access public --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
NPM_CONFIG_PROVENANCE: true | |
- name: PNPM build eslint-plugin | |
run: pnpm run build:eslint | |
- name: Publish eslint-plugin to NPM | |
run: pnpm publish --access public --no-git-checks | |
working-directory: ./packages/eslint | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
NPM_CONFIG_PROVENANCE: true | |
- name: Publish to VSCE | |
run: pnpm vsce publish --no-dependencies -p ${{secrets.VSCE_TOKEN}} | |
working-directory: ./packages/vscode | |
env: | |
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}} |