You forgot to re-add the .gitignore and commited your venv and sqlite DB. You should probably add those back and then delete the venv and DB from the repo history with BFG so that people don't need to clone all of those when cloning the repo:
https://rtyley.github.io/bfg-repo-cleaner/
BFG Download
git clone --mirror git@github.com:hackisonjd/gh-actions-example.git
java -jar bfg.jar --delete-files db.sqlite3 --delete-folders .venv gh-actions-example.git
cd gh-actions-example.git
git reflog expire --expire=now --all && git gc --prune=now --aggressive
git push -f
You forgot to re-add the
.gitignoreand commited your venv and sqlite DB. You should probably add those back and then delete the venv and DB from the repo history with BFG so that people don't need to clone all of those when cloning the repo:https://rtyley.github.io/bfg-repo-cleaner/
BFG Download