10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 19:27:42 +02:00

Merge pull request #2 from scemama/site

First gh-pages script
This commit is contained in:
Anthony Scemama 2020-11-20 09:24:27 +01:00 committed by GitHub
commit 8df316729e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
.github/workflows/gh-pages.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: github pages
on:
push:
branches:
- main
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 hugo
- 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