test list-remove #60
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 documentation to GH Pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'scribblings/**' | |
- '.github/workflows/docs.yml' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install Racket | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: 'CS' | |
version: 'stable' | |
- name: Install Package | |
run: make install RACO_INSTALL_ARGS=--batch | |
- name: Build docs | |
run: make docs/frosthaven-manager/index.html | |
- name: Push to GH Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: docs/frosthaven-manager | |
branch: gh-pages |