Skip to content

Update index.md

Update index.md #97

Workflow file for this run

name: Generate Docs PDF
on:
push:
branches:
- main
workflow_dispatch:
jobs:
pdf:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install Prince
run: |
curl https://www.princexml.com/download/prince-15.4.1-linux-generic-x86_64.tar.gz -O
tar zxf prince-15.4.1-linux-generic-x86_64.tar.gz
cd prince-15.4.1-linux-generic-x86_64
yes "" | sudo ./install.sh
- name: Build PDF
run: npx docusaurus-prince-pdf --toc -u https://docs.projectbluefin.io -o pdf/bluefin.pdf
- name: Upload results
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: bluefin
# The output filename can be specified with --output option
path: pdf/bluefin.pdf
if-no-files-found: error
overwrite: true
- name: Upload Release Artifact
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release upload --clobber 0.1 pdf/bluefin.pdf