Skip to content

Update arr disclaimer and sort sidebar alphabetically #97

Update arr disclaimer and sort sidebar alphabetically

Update arr disclaimer and sort sidebar alphabetically #97

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
name: Deploy to GitHub Pages
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
env:
NODE_OPTIONS: "--openssl-legacy-provider"
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
cname: docs.hostingby.design
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'