Skip to content

Merge pull request #229 from mamantoha/fix-resource-concat_urls #215

Merge pull request #229 from mamantoha/fix-resource-concat_urls

Merge pull request #229 from mamantoha/fix-resource-concat_urls #215

Workflow file for this run

name: website
on:
push:
branches: [ master ]
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 }}