Skip to content

Back to normal mode for light theme #247

Back to normal mode for light theme

Back to normal mode for light theme #247

Workflow file for this run

name: CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy-documentation:
name: Deploy documentation in html format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build docker image
run: docker build . -t aprendepython
- name: Build documentation in html
run: docker run --rm -v .:/code aprendepython
- name: Sync files with production server
uses: burnett01/[email protected]
with:
switches: -avzr --delete
path: _build/
remote_host: aprendepython.es
remote_path: ${{ secrets.REMOTE_BUILD_PATH }}
remote_user: ${{ secrets.REMOTE_USER }}
remote_key: ${{ secrets.REMOTE_KEY }}