Skip to content

chore: release v0.3.5 #15

chore: release v0.3.5

chore: release v0.3.5 #15

Workflow file for this run

name: Release
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
release:
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: corepack enable
- name: Set node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: PNPM build
run: pnpm run build
- run: pnpm dlx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Publish to VSCE
run: pnpm dlx @vscode/vsce publish -p ${{secrets.VSCE_TOKEN}} --no-dependencies
env:
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}}