Skip to content

refactor: switch biggus-tablus from id to class (#167) #180

refactor: switch biggus-tablus from id to class (#167)

refactor: switch biggus-tablus from id to class (#167) #180

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