Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/Build-Test-And-Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,19 @@ jobs:
git tag -f "deployed/prod/${{ github.sha }}"
git push origin "deployed/prod/${{ github.sha }}" --force

- name: Notify IndexNow of Sitemap Update
continue-on-error: true
run: |
curl -X POST https://api.indexnow.org/indexnow \
-H "Content-Type: application/json" \
-d '{
"host": "essentialcsharp.com",
"key": "${{ secrets.INDEXNOW_API_KEY }}",
Comment thread
BenjaminMichaelis marked this conversation as resolved.
Outdated
"urlList": [
"https://essentialcsharp.com/sitemap.xml"
]
}'
Comment thread
BenjaminMichaelis marked this conversation as resolved.
Outdated
Comment thread
BenjaminMichaelis marked this conversation as resolved.
Outdated

- name: Logout of Azure CLI
if: always()
uses: azure/CLI@v3
Expand Down
Loading