hugo-scroll/.github/workflows/ci.yml
Jan Raasch 90cb9bdf3e
chore(ci): remove ref-check
😅... Trying to figure out how to get this to work...
2020-07-09 10:37:04 +02:00

33 lines
659 B
YAML

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: latest
- name: Build local ./exampleSite
run: hugo --minify --gc --source ./exampleSite --baseURL https://janraasch.github.io/hugo-scroll/
- name: Deploy to GitHub Pages
if: github.event_name == 'push'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public