Add files via upload #940
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
# This workflow will install Python 3, run readme_generator.py, save output to README.md and then push changes. | |
name: Update README.md | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Run readme_generator.py | |
run: | | |
python3 readme_generator.py > README.md | |
# python3 readme_generator.py | |
- name: Commit Changes | |
run: | | |
git config --global user.name 'BrandonTang89' | |
git config --global user.email '[email protected]' | |
git commit -am "Updated README.md" | |
git push | |