Provide additional context for the --global flag. #85
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
# Build, but do not deploy, the book on all branches except `master`. | |
name: Build | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install mdbook | |
run: | | |
make install | |
echo $(pwd)/mdbook >> $GITHUB_PATH | |
- name: Build the book | |
run: | | |
mdbook build |