Skip to content

Enh: Add links from news section (#16) #27

Enh: Add links from news section (#16)

Enh: Add links from news section (#16) #27

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ master, main ]
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build site
run: python build.py
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
branch: gh-pages
clean: true