Skip to content

push changes in workflow #4

push changes in workflow

push changes in workflow #4

Workflow file for this run

name: Update Root Index
on:
push:
branches:
- gh-pages
jobs:
update_index:
runs-on: ubuntu-latest
permissions:
contents: write
env:
python_ver: 3.13
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.python_ver }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python_ver }}
- name: Install dependencies
run: |
cd .github
cd scripts
pip install -r requirements.txt
- name: Update Index
run: |
cd .github
cd scripts
python update_index.py
- name: Push Index Changes
run: |
git add .
git -c user.name="github-actions[bot]" -c user.email="41898282+github-actions[bot]@users.noreply.github.com" commit -m "Auto update index" --author="cibere <71997063+cibere@users.noreply.github.com>"
git push