From 549727d681ef0949980b29450ee8be4e55e22448 Mon Sep 17 00:00:00 2001 From: Eddy Date: Mon, 27 Apr 2026 14:40:57 +0200 Subject: [PATCH] fix(ci): ntfy-action erwartet ntfy_auth, nicht auth [appimage] 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) --- .forgejo/workflows/build-appimage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build-appimage.yml b/.forgejo/workflows/build-appimage.yml index ba4ec5b..0e55bf2 100644 --- a/.forgejo/workflows/build-appimage.yml +++ b/.forgejo/workflows/build-appimage.yml @@ -23,7 +23,7 @@ jobs: with: status: start project: claude-desktop - auth: ${{ secrets.NTFY_AUTH }} + ntfy_auth: ${{ secrets.NTFY_AUTH }} - name: Checkout run: | @@ -270,7 +270,7 @@ jobs: status: success project: claude-desktop message: "Version ${{ env.APP_VERSION }} verfuegbar — AppImage + Nix-Binary in Package Registry" - auth: ${{ secrets.NTFY_AUTH }} + ntfy_auth: ${{ secrets.NTFY_AUTH }} - name: Notify failure if: failure() @@ -278,4 +278,4 @@ jobs: with: status: failure project: claude-desktop - auth: ${{ secrets.NTFY_AUTH }} + ntfy_auth: ${{ secrets.NTFY_AUTH }}