mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 12:32:40 +01:00
26 lines
479 B
YAML
26 lines
479 B
YAML
|
name: github pages
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main # Set a branch name to trigger deployment
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-18.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: install dependencies
|
||
|
run: sudo apt-get install emacs
|
||
|
|
||
|
- name: make
|
||
|
run: make -C src/ doc
|
||
|
|
||
|
- name: Deploy
|
||
|
uses: peaceiris/actions-gh-pages@v3
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
publish_dir: ./docs
|
||
|
|