mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
22 lines
618 B
YAML
22 lines
618 B
YAML
name: Check Website
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "current-docs"
|
|
- "master"
|
|
jobs:
|
|
check-website:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set current version
|
|
run: echo "DOCSPELL_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV
|
|
- uses: jorelali/setup-elm@v5
|
|
with:
|
|
elm-version: 0.19.1
|
|
- uses: cachix/install-nix-action@v26
|
|
- name: Build website (${{ env.DOCSPELL_VERSION }})
|
|
run: nix develop .#dev-cnt --command sbt make-website
|