Delete files.json #11
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 Files JSON | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
update-files-json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update Files JSON | |
run: | | |
python generate_files_json.py | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add files.json | |
git commit -m "Update files.json by GitHub Action" | |
git push |