Skip to content

Fixed 1 HEIC

Fixed 1 HEIC #50

Workflow file for this run

name: deploy blog
on:
push:
branches:
- master # Set a branch to deploy
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build main page
run: hugo --minify
- name: Build photos page
run: cd content/photos; npm install; hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: ceso/ceso.github.io
publish_branch: master
publish_dir: ceso.github.io