Skip to content

feat: entra page

feat: entra page #75

Workflow file for this run

name: Build and Deploy to Pages Branch
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Build the Cyscale Documentation
run: |
yarn install --frozen-lockfile
yarn build
cp CNAME build/CNAME
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build