Skip to content

Merge pull request #920 from 3YOURMIND/update-documentation #547

Merge pull request #920 from 3YOURMIND/update-documentation

Merge pull request #920 from 3YOURMIND/update-documentation #547

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ hashFiles('**/yarn.lock') }}
- name: Install modules
run: yarn install --frozen-lockfile
- name: Build @3yourmind/documentation
run: yarn run turbo run --filter=@3yourmind/documentation build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: gh-pages
folder: packages/documentation/dist