Add git credentials #2
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
# .github/workflows/bump_submodule.yaml | |
name: Bump Flutter submodule | |
on: | |
push: | |
branches: | |
- "*" | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
jobs: | |
bump_submodule: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Git | |
run: | | |
git config --global user.email "49079695+FauconSpartiate@users.noreply.github.com" | |
git config --global user.name "Faucon" | |
- name: Bump Flutter submodule | |
run: | | |
git submodule update --remote --init --recursive | |
git add .flutter | |
git commit -m "Upgrade submodule" |