Skip to content

Merge pull request #4 from pspdev/xml-to-csv #1

Merge pull request #4 from pspdev/xml-to-csv

Merge pull request #4 from pspdev/xml-to-csv #1

Workflow file for this run

name: Build pages
on:
push:
branches:
- main
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt install python3 python3-lxml
- name: Build documentation
run: |
python3 ./build_stats_pages.py
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: github-pages
CLEAN: true