Skip to content

ci(github-action): update image ghcr.io/bjw-s/mdbook ( abec495 → 54c9… #234

ci(github-action): update image ghcr.io/bjw-s/mdbook ( abec495 → 54c9…

ci(github-action): update image ghcr.io/bjw-s/mdbook ( abec495 → 54c9… #234

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Docs: Release to GitHub pages"
on:
workflow_dispatch:
push:
branches:
- main
paths:
- .github/workflows/docs-publish.yaml
- docs/**
jobs:
release-docs:
name: Release documentation
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.BJWS_APP_ID }}
private-key: ${{ secrets.BJWS_APP_PRIVATE_KEY }}
- name: Checkout main branch
uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
- name: Build docs
uses: docker://ghcr.io/bjw-s/mdbook:0.4.37@sha256:54c9a613d6ce1d6ade47e74dace438a993e54bb07771da84edb2169fd3a6e960
with:
args: bash -c "cd docs && mdbook build"
- name: Deploy
uses: peaceiris/[email protected]
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ steps.app-token.outputs.token }}
publish_dir: ./docs/book/html
user_name: "bjw-s-bot[bot]"
user_email: "bjw-s-bot <87358111+bjw-s-bot[bot]@users.noreply.github.com>"