Skip to content

Fix typo

Fix typo #292

Workflow file for this run

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