Skip to content

Commit

Permalink
fix the if clause
Browse files Browse the repository at this point in the history
Signed-off-by: OMPRAKASH MISHRA <[email protected]>
  • Loading branch information
mishraomp committed Oct 23, 2024
1 parent 8014f9b commit 9be0275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/.dbdeployer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Validate Inputs
shell: bash
run: |
if ["${{ inputs.s3_enabled }}" ]; then
if [ ${{ inputs.s3_enabled }} ]; then
echo "S3 ie enabled for backups, checking for mandatory secrets"
if [ ! "${{ secrets.s3_access_key }}" ]; then
echo "S3 access key not found"
Expand Down

0 comments on commit 9be0275

Please sign in to comment.