Skip to content

Merge pull request #39 from LiamMcAllisterGroup/add_citation_file #231

Merge pull request #39 from LiamMcAllisterGroup/add_citation_file

Merge pull request #39 from LiamMcAllisterGroup/add_citation_file #231

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
- website
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout website branch
uses: actions/checkout@v3
with:
ref: website
- name: Checkout main branch
uses: actions/checkout@v3
with:
ref: main
path: ./code/
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install Python requirements
run: pip install -r requirements.txt
- name: Generate documentation
run: python3 ./docs/documentation/produce_doc.py ./code/cytools/
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1