From 0dfaad69a09cbaac1a394dd0fe94be4348f1bbd1 Mon Sep 17 00:00:00 2001 From: Viktor Petersson Date: Mon, 9 Dec 2024 12:27:29 +0000 Subject: [PATCH] feat: add validation step to Zapier release workflow --- .github/workflows/zapier-release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/zapier-release.yml b/.github/workflows/zapier-release.yml index b7ad80f..62acb9c 100644 --- a/.github/workflows/zapier-release.yml +++ b/.github/workflows/zapier-release.yml @@ -32,6 +32,11 @@ jobs: run: | echo "{\"id\":${{ secrets.ZAPIER_INTEGRATION_ID }}, \"key\":\"${{ secrets.ZAPIER_DEPLOY_KEY }}\"}" > .zapierapprc + - name: Validate Zapier Integration + env: + ZAPIER_DEPLOY_KEY: ${{ secrets.ZAPIER_DEPLOY_KEY }} + run: zapier validate + - name: Deploy to Zapier env: ZAPIER_DEPLOY_KEY: ${{ secrets.ZAPIER_DEPLOY_KEY }}