fix: extra quotes
All checks were successful
Blog Deployment / Check-Rebuild (push) Successful in 4s
Blog Deployment / Build (push) Has been skipped
Blog Deployment / Deploy-Staging (push) Successful in 7s
Blog Deployment / Test-Staging (push) Successful in 2s
Blog Deployment / Merge (push) Successful in 4s
Blog Deployment / Deploy-Production (push) Successful in 7s
Blog Deployment / Test-Production (push) Successful in 2s
Blog Deployment / Clean (push) Has been skipped
Blog Deployment / Notify (push) Successful in 2s

This commit is contained in:
2025-06-10 21:38:26 +00:00
parent 734b426559
commit 81d6d6f64e

View File

@@ -212,14 +212,14 @@ jobs:
if [ "${{ success() }}" == "true" ]; then if [ "${{ success() }}" == "true" ]; then
curl -H "Priority: min" \ curl -H "Priority: min" \
-H "Tags: white_check_mark" \ -H "Tags: white_check_mark" \
-H "Actions: view, View Run, "${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_id }}" \ -H "Actions: view, View Run, ${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_id }}" \
-d "Blog workflow completed successfully!" \ -d "Blog workflow completed successfully!" \
-u ${NTFY_TOKEN} \ -u ${NTFY_TOKEN} \
${NTFY_URL}/${NTFY_TOPIC} ${NTFY_URL}/${NTFY_TOPIC}
else else
curl -H "Priority: high" \ curl -H "Priority: high" \
-H "Tags: x" \ -H "Tags: x" \
-H "Actions: view, View Run, "${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_id }}" \ -H "Actions: view, View Run, ${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_id }}" \
-d "Blog workflow failed somewhere in the pipeline." \ -d "Blog workflow failed somewhere in the pipeline." \
-u ${NTFY_TOKEN} \ -u ${NTFY_TOKEN} \
${NTFY_URL}/${NTFY_TOPIC} ${NTFY_URL}/${NTFY_TOPIC}