Fix duplicate FAQPage field for SEO, 2nd try #218
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: Hugo CI & deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and deploy website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: Setup Hugo | |
uses: peaceiris/[email protected] | |
with: | |
hugo-version: ${{ env.HUGO_RELEASE }} | |
extended: true | |
env: | |
HUGO_RELEASE: '0.116.1' | |
- name: Check Hugo installation | |
run: hugo env | |
- name: Build website with Hugo | |
run: hugo --minify --printI18nWarnings | |
- name: Deploy website with rsync | |
uses: burnett01/[email protected] | |
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 }} |