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
# This workflow will update the submodule branch | |
name: Update Submodule Branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Update from Main | |
run: | | |
git config --local user.email "${{ secrets.OWNER_MAIL }}" | |
git config --local user.name "${{ secrets.OWNER_USERNAME }}" | |
git fetch | |
git checkout submodule | |
git rm -r . | |
git checkout main -- addons/behaviour_toolkit | |
mv addons/behaviour_toolkit/* . | |
git rm -r addons/behaviour_toolkit | |
git commit -m Updated Submodule from Main | |
git push |