mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
29 lines
932 B
YAML
29 lines
932 B
YAML
name: Publish Website
|
|
on:
|
|
push:
|
|
branches:
|
|
- "current-docs"
|
|
jobs:
|
|
publish-website:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3.3.0
|
|
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@v20
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-21.11
|
|
- name: Print nixpkgs version
|
|
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
|
|
- name: Build website (${{ env.DOCSPELL_VERSION }})
|
|
run: nix-shell website/shell.nix --run "sbt make-website"
|
|
- name: Publish website (${{ env.DOCSPELL_VERSION }})
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: sbt publish-website
|