Skip to content

chore(release): v0.2.0 #3

chore(release): v0.2.0

chore(release): v0.2.0 #3

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- run: npm ci
- run: npm run package
- id: extract-changelog
uses: sean0x42/markdown-extract@v2
with:
file: CHANGELOG.md
pattern: ${{ github.ref_name }}
no-print-matched-heading: true
- name: Create Release
uses: softprops/action-gh-release@v1
with:
body: |
## Changelog
${{ steps.extract-changelog.outputs.markdown }}
files: |
*.vsix