Skip to content

try to checkout git history #259

try to checkout git history

try to checkout git history #259

Workflow file for this run

# https://github.com/executablebooks/github-action-demo/blob/master/.github/workflows/book.yml
name: deploy-book
on:
pull_request:
branches:
- main
push:
branches:
- main
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
fetch-depth: 0

Check failure on line 22 in .github/workflows/book.yml

View workflow run for this annotation

GitHub Actions / deploy-book

Invalid workflow file

The workflow is not valid. .github/workflows/book.yml (Line: 22, Col: 7): Unexpected value 'fetch-depth'
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: install dependencies
run: |
pip install -r requirements.txt
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: build examples
run: |
bash build_examples.sh
- name: build jupyter book
run: |
jupyter-book build .
ls -l _build/html
- name: fix CNAME
run: |
cp CNAME _build/html/
# Push the book's HTML to github-pages
- name: GitHub Pages action
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html