Skip to content

add initial styling and begin fleshing out content #2

add initial styling and begin fleshing out content

add initial styling and begin fleshing out content #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Replace with your default branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Generate static HTML
run: |
poetry run python my_dataset_page/generate_static.py
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs # GitHub Pages serves content from /docs folder