Fix a typo on "Mi primer departamento" entry #30
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Hugo-build: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out master branch from the repo. | |
- name: Checkout master branch | |
uses: actions/checkout@v2 | |
with: | |
submodules: true # Fetch Hugo themes | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
# Sets up the latest version of Hugo | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.110.0' | |
extended: true | |
# Clean and don't fail | |
- name: Clean public directory | |
run: rm -rf public | |
# Builds the site using the latest version of Hugo | |
- name: Build | |
run: hugo -D |