Mention the extensive test suite and maria.cloud support in the docs … #44
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: GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Set a branch name to trigger deployment | |
jobs: | |
publish: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
.cpcache | |
.shadow-cljs | |
~/.m2 | |
key: "1" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install clojure tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install babashka | |
uses: just-sultanov/setup-babashka@v2 | |
with: | |
version: '0.8.156' | |
- name: Build static site | |
run: bb build-static | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public/build |