Back to normal mode for light theme #247
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: 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 }} |