Add d to system-grid #32
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
on: | |
- push | |
- pull_request | |
jobs: | |
build_and_publish_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install Racket | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
version: '8.1' | |
dest: '"${HOME}/racketdist"' | |
local_catalogs: $GITHUB_WORKSPACE | |
sudo: never | |
- name: Register local packages | |
run: | | |
raco pkg install -i --auto --no-setup --skip-installed metapict | |
raco pkg update --auto --no-setup metapict | |
- name: Setup Collections | |
run: raco setup --check-pkg-deps metapict | |
- name: Build documentation using raco setup | |
run: | | |
xvfb-run -a raco setup --jobs 1 metapict | |
- name: Build documentation with raco scribble | |
run: | | |
pwd | |
ls -r * | |
xvfb-run -a raco scribble +m --redirect-main http://pkg-build.racket-lang.org/doc/ --htmls --dest ./htmls metapict/scribblings/metapict.scrbl | |
- name: Push to Github Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: htmls/metapict | |
branch: gh-pages |