Skip to content

Update generator.py #13787

Update generator.py

Update generator.py #13787

Workflow file for this run

name: Build CSS
on:
push:
branches:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Run build and commit changes
run: |
echo "Running build..."
python utils/generator.py
echo "Setting up git credentials..."
git remote set-url origin https://x-access-token:"$GITHUB_TOKEN"@github.com/"$GITHUB_REPOSITORY".git
git config --global user.email "[email protected]"
git config --global user.name "actions"
echo "Git credentials configured."
git checkout gh-pages
git add .
git commit -m "Automatic build of CSS from data" && git push --set-upstream origin gh-pages || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}