Skip to content

[github/workflows] Modify: runner & hook condition #405

[github/workflows] Modify: runner & hook condition

[github/workflows] Modify: runner & hook condition #405

Workflow file for this run

name: github pages
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'Makefile'
workflow_dispatch

Check failure on line 10 in .github/workflows/gh-pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gh-pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive # Fetch Hugo theme w/ dependencies
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: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- name: Build
run: env HUGO_ENV=production hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public