real fix
Some checks failed
Apply Kuberentes Configs / update-repo (push) Successful in 0s
Apply Kuberentes Configs / update-infrastructure (push) Failing after 2s
Apply Kuberentes Configs / notify-on-failure (push) Failing after 0s

This commit is contained in:
2026-02-18 20:37:14 -07:00
parent 893f20663a
commit fafdcae679

View File

@@ -28,8 +28,10 @@ jobs:
working-directory: /home/gitea-runner working-directory: /home/gitea-runner
run: | run: |
set -e set -e
echo "${{ inputs.message }}" | curl -f -H "Title: ${{ inputs.title }}" \ cat <<EOF | curl -f -H "Title: ${{ inputs.title }}" \
-H "Priority: ${{ inputs.priority }}" \ -H "Priority: ${{ inputs.priority }}" \
-H "Tags: ${{ inputs.tags }}" \ -H "Tags: ${{ inputs.tags }}" \
--data-binary "@-" \ --data-binary "@-" \
"https://ntfy.sh/${{ secrets.NTFY_CHANNEL }}" "https://ntfy.sh/${{ secrets.NTFY_CHANNEL }}"
${{ inputs.message }}
EOF