Update about.md #4
This file contains hidden or 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: IndexNow Auto Submit | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
indexnow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Submit URLs to IndexNow | |
run: | | |
echo "Start submitting to IndexNow..." | |
URLs=( | |
"https://gptvpnhelper.com/" | |
) | |
KEY="7fcb984b977c41acbe5d4ffe78ed0308" | |
for URL in "${URLs[@]}"; do | |
curl -i "https://api.indexnow.org/indexnow?url=$URL&key=$KEY" \ | |
&& echo "Submitted $URL" \ | |
|| echo "Failed to submit $URL" | |
done |