10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-24 03:37:49 +02:00
QUESTDB_website/.github/workflows/gh-pages.yml

38 lines
663 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-get update
- name: install dependencies
run: sudo apt-get install snap
- name: install hugo
run: 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