From bd41ffbe79685474bfb38856b93d90f8b1bb57b2 Mon Sep 17 00:00:00 2001 From: Valentin Heiserer Date: Tue, 26 Aug 2025 02:16:39 +0200 Subject: [PATCH] fix: correct webhook token secret reference in GitHub Actions workflow --- .github/workflows/BuildAndPushContainer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/BuildAndPushContainer.yml b/.github/workflows/BuildAndPushContainer.yml index d225fef..e3ab808 100644 --- a/.github/workflows/BuildAndPushContainer.yml +++ b/.github/workflows/BuildAndPushContainer.yml @@ -57,6 +57,6 @@ jobs: - name: Notify updater (GET, bearer) if: ${{ success() && github.ref == 'refs/heads/main' }} env: - WEBHOOK_TOKEN: ${{ secrets.GITHUB_WEBHOOK_TOKEN }} + WEBHOOK_TOKEN: ${{ secrets.WEBHOOK_TOKEN }} run: | curl -fsS --retry 5 -H "Authorization: Bearer ${WEBHOOK_TOKEN}" http://10.0.3.185:8080/v1/update \ No newline at end of file