From 91d41799216c240c65d33c9db15d78e0bb977bd5 Mon Sep 17 00:00:00 2001 From: vedhav Date: Tue, 13 Aug 2024 15:17:40 +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..8b987a17 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