Skip to content

Docker-based build process #58

Docker-based build process

Docker-based build process #58

Workflow file for this run

name: Website CI
on:
push:
branches: [master]
pull_request:
branches: [master]
repository_dispatch:
types: [website-deploy]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build Website
run: ./build.sh
- if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' && always()
name: Deploy website
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
force_orphan: true