Skip to content

Commit

Permalink
chore: use the proper channel name to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhav committed Aug 13, 2024
1 parent 929f2df commit a57d8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a57d8fc

Please sign in to comment.