Skip to content

update docs

update docs #2

Workflow file for this run

name: Release plugin
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
with:
version: 10.18.2
- uses: actions/setup-node@v6
with:
node-version: lts/Jod
cache: pnpm
- name: Build plugin
run: |
pnpm install -r --frozen-lockfile
pnpm build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="v$tag" \
--draft \
main.js manifest.json styles.css