Skip to content

Commit

Permalink
Merge pull request #40 from input-output-hk/coot/gh-pages
Browse files Browse the repository at this point in the history
Publish haddocks on gh-pages
  • Loading branch information
coot committed Jun 2, 2023
2 parents 071fed3 + d69c3ee commit 2a33662
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 2 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/github-page.yml
@@ -0,0 +1,72 @@
name: "Haddock documentation"

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
haddocks:
name: "Haddocks"

runs-on: ${{ matrix.os }}

defaults:
run:
shell: bash

strategy:
fail-fast: false
matrix:
ghc: ["9.4.4"]
os: [ubuntu-latest]

permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Checkout ouroboros-network repository
uses: actions/checkout@v3

# we need nix to later build the spec documents
- name: Install Nix
uses: cachix/install-nix-action@v20

- name: Install Haskell
uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.10.1.0'

- uses: actions/cache@v3
name: Cache cabal store
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: cache-haddock-${{ runner.os }}-${{ matrix.ghc }}-v1-${{ hashFiles('cabal-cache.cabal') }}-${{ github.sha }}
restore-keys: cache-haddock-${{ runner.os }}-${{ matrix.ghc }}-v1-${{ hashFiles('cabal-cache.cabal') }}-

- name: Update Hackage index
run: cabal update

- name: Build plan
run: cabal build --dry-run --enable-tests all

- name: Build Haddock documentation 🔧
run: |
cabal haddock-package --hackage all
- name: Upload artifacts
uses: actions/upload-pages-artifact@v1
with:
path: ./haddocks

- name: Deploy 🚀
id: deployment
uses: actions/deploy-pages@v2

4 changes: 2 additions & 2 deletions .github/workflows/haskell.yml
Expand Up @@ -81,7 +81,7 @@ jobs:
cabal --version
echo "cabal-store=$(dirname $(cabal --help | tail -1 | tr -d ' '))\\store" >> $GITHUB_OUTPUT
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: "Configure cabal.project.local"
run: |
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
sudo apt-get -y install fd-find
- name: "Setup Haskell"
uses: haskell/actions/setup@v1
uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: 9.2.5
Expand Down

0 comments on commit 2a33662

Please sign in to comment.