Skip to content

docs: update in sync with latest atlas changes (v0.5.0) #115

docs: update in sync with latest atlas changes (v0.5.0)

docs: update in sync with latest atlas changes (v0.5.0) #115

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
github_pages_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: |
yarn install
yarn export
- name: Deploy
if: github.ref_name == 'main'
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}