-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (74 loc) · 2.18 KB
/
static.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Single deploy job since we're just deploying
build:
runs-on: ubuntu-latest
environment:
name: sire-build
defaults:
run:
shell: "bash -l {0}"
env:
FORCE_BUILD_DOCS: 1
SIRE_DONT_PHONEHOME: 1
SIRE_SILENT_PHONEHOME: 1
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout gh-pages branch
uses: actions/checkout@v3
with:
ref: gh-pages
path: gh-pages
- name: Debug directories
run: ls -l
- name: Debug pages
run: ls -l gh-pages
- name: Install Python
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.9
activate-environment: sire_build
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true
- name: Install Sire
run: mamba install -y -c openbiosim sire
- name: Checkout sire branch
uses: actions/checkout@v3
with:
repository: "openbiosim/sire"
github-server-url: "https://github.com"
path: project
- name: Debug sire
run: ls -l project
- name: Build Website
run: python actions/build_docs.py project
- name: Assemble Website
run: python actions/assemble_website.py project
- name: Deduplicate Website
run: python actions/deduplicate_website.py
- name: Git update Website
run: python actions/gitupdate_website.py
- name: Push changes
uses: ad-m/[email protected]
with:
branch: "gh-pages"
directory: "gh-pages"
github_token: ${{ secrets.GITHUB_TOKEN }}