From 9327ba6faf3e2f315589b064fc458dffb11ee521 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Sun, 20 Jul 2025 19:26:19 +0300 Subject: [PATCH] Create deploy.yml --- .github/workflows/deploy.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..2ed6304 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,14 @@ +name: Sheets Deploy Hook + +on: + push: + workflow_dispatch: + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Send GET request to Sheets Deploy Hook + run: curl -X GET "$SHEETS_DEPLOY_HOOK" + env: + SHEETS_DEPLOY_HOOK: ${{ secrets.SHEETS_DEPLOY_HOOK }}