Skip to content

update sitemap script to work on Linux #2

update sitemap script to work on Linux

update sitemap script to work on Linux #2

Workflow file for this run

name: Make sitemap
on:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.11
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.txt
- name: Make sitemap
run: |
python ./scripts/sitemap.py ./sitemap.html
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4