Skip to content

Commit

Permalink
fix: pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
shejri committed Sep 19, 2024
1 parent 6ddb569 commit 1d9ed0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
terraform workspace list
- name: 'Terraform Plan'
if: ${{ github.event.inputs.directory != '' }}
if: github.event.inputs.directory != ''
working-directory: ${{ github.event.inputs.directory }}
env:
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
Expand All @@ -96,8 +96,8 @@ jobs:
- name: 'Terraform apply'
if: |
${{ github.event.inputs.action == 'apply' }} &&
${{ github.event.inputs.directory != '' }}
github.event.inputs.action == 'apply' &&
github.event.inputs.directory != ''
working-directory: ${{ github.event.inputs.directory }}
env:
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
Expand Down

0 comments on commit 1d9ed0e

Please sign in to comment.