From 9aabec8027da5815f9f5fdc4eb5e5bee2ab04cdd Mon Sep 17 00:00:00 2001 From: Mohammed Rabil Date: Fri, 9 Feb 2024 03:04:44 +0530 Subject: [PATCH] Update push-notify command in notify.yml --- .github/workflows/notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml index ead0a62..947afb4 100644 --- a/.github/workflows/notify.yml +++ b/.github/workflows/notify.yml @@ -41,7 +41,7 @@ jobs: run: | release_tag=${{ github.event.inputs.release_tag }} release_body=$(gh release view $release_tag --json body -q .body) - python3 push-notify/push_notification.py --title "App update $release_tag" --body "$release_body" --api_url ${{ secrets.NOTIF_API_URL }} --bearer ${{ secrets.NOTIF_API_BEARER }} + python3 push-notify --title "App update $release_tag" --body "$release_body" --api_url ${{ secrets.NOTIF_API_URL }} --bearer ${{ secrets.NOTIF_API_BEARER }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}