Update imagen_de_la_asociacion.md #5
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: GitBook | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- README.md | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: 'true' | |
- uses: actions/checkout@v2 | |
- name: Run GitBook | |
run: | | |
docker run --rm -v $GITHUB_WORKSPACE:/gitbook ghcr.io/roboticslab-uc3m/gitbook:latest gitbook install | |
docker run --rm -v $GITHUB_WORKSPACE:/gitbook ghcr.io/roboticslab-uc3m/gitbook:latest gitbook build | |
- uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
build_dir: _book | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |