Merge pull request #107 from allipatev/refresh-sync-arch-vol-ftp #27
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: Trigger Publish Action | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: exasol/kb-flare | |
ref: main | |
token: ${{ secrets.EXA_CI_7_TOKEN }} | |
submodules: true | |
- 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 |