Skip to content

Bump nanoid from 3.3.7 to 3.3.11 (#110) #31

Bump nanoid from 3.3.7 to 3.3.11 (#110)

Bump nanoid from 3.3.7 to 3.3.11 (#110) #31

Workflow file for this run

name: Deploy to GH Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <support+actions@github.com>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}