Skip to content

Improve blog layout

Improve blog layout #6

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
build-the-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 18.x
- name: Install MyST Markdown
run: npm install -g mystmd
- name: Build HTML Assets
run: myst build --html
# - name: Deploy to Netlify
# uses: nwtgck/actions-netlify@v3.0
# with:
# publish-dir: "./_build/html"
# production-branch: main
# github-token: ${{ secrets.GITHUB_TOKEN }}
# deploy-message: "Deploy from GitHub Actions"
# enable-pull-request-comment: true
# enable-commit-comment: false
# overwrites-pull-request-comment: true
# env:
# NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
# NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}