Skip to content

Update Index

Update Index #51

Workflow file for this run

name: 'Update Index'
on:
workflow_dispatch:
schedule:
- cron: '15 10 * * *'
jobs:
update_index:
name: 'Update Index'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: 'Checkout'
uses: actions/checkout@master
with:
submodules: 'recursive'
- name: Pull & update submodules recursively
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: 'Publish'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./action.sh
- name: 'Update Index'
uses: stefanzweifel/git-auto-commit-action@master
with:
commit_message: Update Index