Skip to content

docs: update CONTRIBUTING.md #48

docs: update CONTRIBUTING.md

docs: update CONTRIBUTING.md #48

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- run: corepack enable
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 18
cache: pnpm
- name: Install & Build
run: |
pnpm install
pnpm run build
# pnpm run docs:build
# - name: Deploy Docs
# uses: JamesIves/[email protected]
# with:
# branch: gh-pages
# folder: docs/.vitepress/dist
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release