Release 79 #38
Workflow file for this run
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 README with latest release | |
on: | |
release: | |
types: [published] | |
jobs: | |
update_readme_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set executable permission | |
run: chmod +x update_readme.py | |
- name: Execute Python script to update README | |
run: ./update_readme.py | |
- name: Commit changes to README | |
run: | | |
git config --global user.name 'Syipmong' | |
git config --global user.email '[email protected]' | |
git commit -am "Updated README with latest release" | |
git push |