Skip to content

Simplify GitHub workflows by removing CI workflow and renaming jobs #108

Simplify GitHub workflows by removing CI workflow and renaming jobs

Simplify GitHub workflows by removing CI workflow and renaming jobs #108

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crystal-lang/install-crystal@v1
- name: Install dependencies
run: shards install
- name: Generate document
run: crystal docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs