Skip to content

temporarily allow to run on this branch for testing #26

temporarily allow to run on this branch for testing

temporarily allow to run on this branch for testing #26

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches:
- pages
permissions:
content: read

Check failure on line 9 in .github/workflows/gh-pages.yml

View workflow run for this annotation

GitHub Actions / Deploy Github Pages

Invalid workflow file

The workflow is not valid. .github/workflows/gh-pages.yml (Line: 9, Col: 3): Unexpected value 'content'
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
jobs:
generate-docs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.35'
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build with mdBook
run: cd docs/book && mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/book'
deploy-page:
needs: generate-docs
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4