fixing gitignore

This commit is contained in:
2025-12-28 21:19:27 +00:00
parent fb120bc50a
commit 8f234a746d
221 changed files with 8064 additions and 11740 deletions

23
publish-and-push.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
# Exit immediately if any command fails
set -e
# Define paths
ORG_OUTPUT_DIR="$HOME/master-folder/org_files/org_web/output"
cd "$ORG_OUTPUT_DIR"
echo "HTML published to: $ORG_OUTPUT_DIR"
# Git commands
echo "Adding changes to Git..."
git add .
echo "Committing..."
git commit -m "Auto-publish on $(date)" || echo "Nothing to commit."
echo "Pushing to GitHub..."
git push origin main
echo "Done! Changes pushed and Cloudflare should rebuild the site."