-
Notifications
You must be signed in to change notification settings - Fork 20
56 lines (52 loc) · 1.54 KB
/
deploy-github-pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Website Deploy
on:
push:
branches:
- development
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
python -m pip install --upgrade pip
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py', '**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gfortran swig libhdf5-serial-dev libmpich-dev
sudo apt-get install pandoc
python -m pip install pandoc
python -m pip install coverage cpp-coveralls flake8 pytest
python -m pip install .[doc]
- name: Make dependencies
env:
PATH_TO_POSYDON: /home/runner/work/POSYDON/POSYDON/
run: |
cd docs && make html; cd ../
touch docs/_build/html/.nojekyll
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/_build/html/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}