Skip to content

chore: update to 2023-11-11 21:37 (#139) #155

chore: update to 2023-11-11 21:37 (#139)

chore: update to 2023-11-11 21:37 (#139) #155

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- master
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build website
run: |
docker build . --tag "chombo:latest"
mkdir __build
id=$(docker create "chombo:latest")
docker cp "$id:/usr/share/nginx/html/." ./__build
docker rm -v $id
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GHTOKEN }}
publish_dir: ./__build