-
Notifications
You must be signed in to change notification settings - Fork 190
33 lines (29 loc) · 1.13 KB
/
libro_optimizacion.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#see: https://jupyterbook.org/publish/gh-pages.html
name: deploy-book
# Only run this when the main branch changes
on:
push:
branches:
- main
# If your git repository has the Jupyter Book within some-subfolder next to
# unrelated files, you can make this run only if a file within that specific
# folder has been modified.
paths:
- libro_optimizacion/temas/**
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
# Build the book
- name: Build the book
run: cd libro_optimizacion/temas && mkdir _build && chmod gou+wrx -R _build && docker run -v $(pwd):/datos --entrypoint "/home/myuser/.local/bin/jb" --rm palmoreck/jupyterlab_optimizacion_2:3.4.3 build /datos/
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: libro_optimizacion/temas/_build/html