commit 49f0a8ee6d2e698e8384d0527a9d77aa17b57035 #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Site | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy-site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: make | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22.9.0 | |
- name: Build site | |
run: make build-server | |
- name: Deploy site | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-page | |
folder: display | |
single-commit: true | |
clean: true |