Merge pull request #26 from TouchDesigner/200-series/part1 #29
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Running python build_file_list script | |
run: python ./.github/workflows/build_file_list.py | |
- name: Push changes | |
run: | | |
git config --global user.name AUTOMATION | |
git config --global user.email "[email protected]" | |
git status | |
git add . | |
git commit -m "Auto updating release manifests" | |
git push |