build_application #20
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: | |
repository_dispatch: | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update submodules | |
run: | | |
git submodule update --init --recursive | |
git submodule update --remote --merge | |
git add . | |
git config user.email "[email protected]" | |
git config user.name "IntelliFactory CI" | |
git commit -m "Update submodules" | |
git push |