Skip to content

Release 1.7.0

Release 1.7.0 #30

Workflow file for this run

name: Deploy docs
on:
push:
branches: [ "master" ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: shards install
- name: Build documentation
run: crystal docs --source-refname="master"
- name: Deploy documentation to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
force_orphan: true