Skip to content

Merge pull request #7 from sergix44/feat/output-base64 #14

Merge pull request #7 from sergix44/feat/output-base64

Merge pull request #7 from sergix44/feat/output-base64 #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
paths:
- docs/**
branches:
- master
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
run: cd docs && yarn install --frozen-lockfile
- name: Build website
run: cd docs && yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com