Skip to content

Decrease size of theme switcher icon #30

Decrease size of theme switcher icon

Decrease size of theme switcher icon #30

Workflow file for this run

---
name: Deployment
env:
PELICAN_CONTENT_DIR: content
PELICAN_BUILD_DIR: build
PELICAN_CONFIG_FILE: pelicanconf.py
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Build with pelican
run: pelican $PELICAN_CONTENT_DIR -o $PELICAN_BUILD_DIR -s $PELICAN_CONFIG_FILE
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ${{ env.PELICAN_BUILD_DIR }}
branch: gh-pages