Skip to content

fix: installing optional yaml support for jinja2 #3

fix: installing optional yaml support for jinja2

fix: installing optional yaml support for jinja2 #3

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install Jinja2
run: pip install jinja2-cli "jinja2-cli[yaml]"
- name: Build
run: make all
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2