10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-03 06:50:58 +02:00
QUESTDB_website/.github/workflows/gh-pages.yml
2020-11-20 09:54:19 +01:00

38 lines
660 B
YAML

name: github pages
on:
push:
branches:
- master
- site
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: refresh apt
run: sudo apt update
- name: install dependencies
run: sudo apt install snap
- name: install hugo
run: sudo snap install hugo --channel=extended
- name: install theme
run: git submodule update --init --recursive
- name: make
run: make
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public