Skip to content

squash 0.10.3

squash 0.10.3 #45

Workflow file for this run

name: release
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
name: Build and upload to GitHub Pages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install
- run: yarn test
- run: yarn build
- run: git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npx gh-pages -d build -u "github-actions-bot <[email protected]>"