fix(ci): ntfy-action erwartet ntfy_auth, nicht auth [appimage]
All checks were successful
Build AppImage / build (push) Successful in 9m33s

Die ntfy-action ueber data/ntfy-action@main definiert ihre Inputs als
ntfy_auth (siehe action.yml). Mit auth: kam keine Notification durch.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Eddy 2026-04-27 14:40:57 +02:00
parent ed089c1e1c
commit 549727d681

View file

@ -23,7 +23,7 @@ jobs:
with: with:
status: start status: start
project: claude-desktop project: claude-desktop
auth: ${{ secrets.NTFY_AUTH }} ntfy_auth: ${{ secrets.NTFY_AUTH }}
- name: Checkout - name: Checkout
run: | run: |
@ -270,7 +270,7 @@ jobs:
status: success status: success
project: claude-desktop project: claude-desktop
message: "Version ${{ env.APP_VERSION }} verfuegbar — AppImage + Nix-Binary in Package Registry" message: "Version ${{ env.APP_VERSION }} verfuegbar — AppImage + Nix-Binary in Package Registry"
auth: ${{ secrets.NTFY_AUTH }} ntfy_auth: ${{ secrets.NTFY_AUTH }}
- name: Notify failure - name: Notify failure
if: failure() if: failure()
@ -278,4 +278,4 @@ jobs:
with: with:
status: failure status: failure
project: claude-desktop project: claude-desktop
auth: ${{ secrets.NTFY_AUTH }} ntfy_auth: ${{ secrets.NTFY_AUTH }}