Skip to content

style: package.json prettier formatting #15

style: package.json prettier formatting

style: package.json prettier formatting #15

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@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- run: npm run docs
- name: Publish docs
run: |
git config --global user.name "Connor Burton"
git config --global user.email "[email protected]"
git add .
git commit -m "chore(docs): automated update typedocs after release [skip ci]"
git push --force