Skip to content

Add webring

Add webring #35

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.13.x
opam-depext-flags: --with-test
- run: opam install . --deps-only --with-doc --with-test
- run: opam exec -- dune exec src/blogger.exe -- build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./_site/
external_repository: xhtmlboi/xhtmlboi.github.io
publish_branch: main
enable_jekyll: false