Add files via upload #1
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 Manifest | |
on: | |
push: | |
branches: | |
- main | |
- master | |
workflow_dispatch: | |
jobs: | |
update-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate Files Manifest | |
run: | | |
echo "# Files Manifest - Last Updated: $(date -u '+%Y-%m-%d %H:%M:%S UTC')" > files_manifest.json | |
find . -type f \ | |
! -path "./.git/*" \ | |
! -path "./.github/*" \ | |
! -name "files_manifest.json" \ | |
-exec stat --format='{"%n": {"modified": "%y"}},' {} \; | \ | |
sed '$ s/,$//' | \ | |
(echo "{" && cat && echo "}") > files_manifest.json | |
- name: Commit and Push Manifest | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add files_manifest.json | |
git commit -m "Update files manifest" || exit 0 | |
git push |