Skip to content

Merge pull request #1538 from Plutonomicon/koz/1491 #323

Merge pull request #1538 from Plutonomicon/koz/1491

Merge pull request #1538 from Plutonomicon/koz/1491 #323

Workflow file for this run

name: Build and Deploy docs to Github Pages
on:
push:
branches:
- develop
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install and Build
run: |
npm install -g spago
npm install -g [email protected]
npm install -g purescript-docs-search
spago docs --no-search
purescript-docs-search build-index --package-name cardano-transaction-lib
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: generated-docs/html