Sync Submodules #3
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: Sync Submodules | |
on: workflow_dispatch | |
jobs: | |
repo_sync: | |
name: Sync with Main repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: ssh and git module update | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
script: echo hi | |
# cd /opt/software-discovery-tool-deploy | |
# git pull --recurse-submodules | |
# git submodule update --remote --recursive | |
# git commit -sam "Auto updated submodule references" && git push || echo "No changes to commit" |