From a57d8fc3e9d30b68e0a8612e90d769249bdd96d9 Mon Sep 17 00:00:00 2001 From: vedhav Date: Tue, 13 Aug 2024 15:13:53 +0530 Subject: [PATCH] chore: use the proper channel name to skip --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c53adcdf..7c1601d8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -70,7 +70,7 @@ jobs: - name: Check if deployment should be skipped id: skip_check run: | - if [[ "${{ matrix.channel }}" != "main" && ("${{ matrix.directory }}" == "delayed-data" || "${{ matrix.directory }}" == "custom-transform") ]]; then + if [[ "${{ matrix.channel }}" != "stable" && ("${{ matrix.directory }}" == "delayed-data" || "${{ matrix.directory }}" == "custom-transform") ]]; then echo "skip=true" >> $GITHUB_OUTPUT echo "Skipping deployment for ${{ matrix.directory }} app." else