Skip to content

Commit

Permalink
gh-action
Browse files Browse the repository at this point in the history
  • Loading branch information
lost committed May 6, 2024
1 parent cb0c770 commit dc7ee7f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: docs

on:
push:
branches: [ main ]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: nightly
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: shards install --skip-postinstall --skip-executables
- name: Generate documentation
run: crystal docs
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dc7ee7f

Please sign in to comment.