Skip to content

moving to one centralized css file #12

moving to one centralized css file

moving to one centralized css file #12

name: Update Submodules
on:
push:
branches:
- main
workflow_dispatch:
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Update submodules
run: |
git submodule foreach git pull origin $(git rev-parse --abbrev-ref HEAD)
- name: Commit and push updated submodules
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Update submodules to latest commit" || echo "No changes to commit"
git push