-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: realiza build do livro ao abrir PR
- Loading branch information
1 parent
379c23c
commit ad42570
Showing
1 changed file
with
52 additions
and
30 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,52 @@ | ||
name: Build e deploy do livro | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Setup GitHub Actions | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Instalação jupyter-book | ||
run: pip install jupyter-book | ||
|
||
- name: Build do livro | ||
run: jupyter-book build ./book | ||
|
||
# Push the book's HTML to github-pages | ||
- name: GitHub Pages action | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./book/_build/html | ||
name: Build e deploy do livro | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup GitHub Actions | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Instalação jupyter-book | ||
run: pip install jupyter-book | ||
|
||
- name: Build do livro | ||
run: jupyter-book build ./book | ||
|
||
build-and-deploy: | ||
if: github.event_name == 'push' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
needs: build | ||
steps: | ||
- name: Execute build steps | ||
uses: ./.github/workflows/build_and_deploy.yml@build | ||
|
||
# Push the book's HTML to github-pages | ||
- name: GitHub Pages action | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./book/_build/html | ||
|
||
build-only: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Execute build steps | ||
uses: ./.github/workflows/build_and_deploy.yml@build |