Skip to content

Remove duplicate link and update spanish version #242

Remove duplicate link and update spanish version

Remove duplicate link and update spanish version #242

Workflow file for this run

name: Hugo CI & deploy
on:
push:
branches:
- main
jobs:
build:
name: Build and deploy website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
with:
submodules: true
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2.6.0
with:
hugo-version: ${{ env.HUGO_RELEASE }}
extended: true
env:
HUGO_RELEASE: '0.120.4'
- name: Check Hugo installation
run: hugo env
- name: Build website with Hugo
run: hugo --minify --printI18nWarnings
- name: Deploy website with rsync
uses: burnett01/rsync-deployments@6.0.0
with:
switches: -avzr --quiet --delete
path: public/
remote_path: ${{ secrets.DEPLOY_DIRECTORY }}
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}