Bump pre-commit/action from 3.0.0 to 3.0.1 #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy-book | |
on: | |
push | |
# This job installs dependencies, builds the book, and pushes it to `gh-pages` | |
jobs: | |
deploy-book: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Build the book | |
- name: Build the book | |
shell: bash | |
run: | | |
make build | |
- name: Branch | |
shell: bash | |
id: target | |
run: | | |
echo "Branch: ${{ github.ref }}" | |
if ${{ github.ref == 'refs/heads/main' }}; then | |
echo "branch=gh-pages" >> $GITHUB_OUTPUT | |
else | |
echo "branch=draft" >> $GITHUB_OUTPUT | |
fi | |
- name: Publish book | |
uses: JamesIves/[email protected] | |
with: | |
branch: ${{ steps.target.outputs.branch }} # The branch the action should deploy to. | |
folder: book/_build/html # The folder the action should deploy. |