Skip to content

Replit prettier ignore .upm #20

Replit prettier ignore .upm

Replit prettier ignore .upm #20

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
- '**/LICENSE.txt'
- '**/.replit'
- '**/replit.nix'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: TyHil/personal-website
token: ${{ secrets.PRIVATE_TOKEN_GITHUB }}
submodules: recursive
- name: Pull & update submodules recursively
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: Commit
run: |
git config user.email "actions@github.com"
git config user.name "GitHub Actions - update submodules"
git add --all
git commit -m "Update submodules" || echo "No changes to commit"
git push