Skip to content

Fix typo in layout components #64

Fix typo in layout components

Fix typo in layout components #64

Workflow file for this run

name: Gatsby Build & Deploy
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build with Gatsby
run: npm run build
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
personal_token: ${{ secrets.MERGIST_DEPLOY_PAT }}
publish_dir: ./public
cname: mergist.johng.io