integrated nextjs app, upgraded docker and added docker watch support… #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update submodules | |
on: | |
push: | |
branches-ignore: | |
- main | |
workflow_dispatch: | |
jobs: | |
update_submodules: | |
name: Update Submodules | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Update Submodules | |
run: | | |
git submodule update --init --recursive | |
git submodule foreach git pull origin main | |
git add . | |
git commit -m "Update submodules" | |
git push |