Update #19
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 | |
on: workflow_dispatch | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-content: | |
name: create-content | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Do Update | |
run: . ./scripts/updateToLatest.sh | |
- name: Commit code | |
run: | | |
git config --global user.name 'GithubActions BaconPaul Bot' | |
git config --global user.email 'baconpaul@users.noreply.github.com' | |
git add . | |
git commit -m "Update to Latest Airwin" | |
git push |