Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvija Tovernic committed Sep 27, 2024
1 parent c18ec66 commit 675979d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pulumi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,19 +102,19 @@ jobs:
working-directory: pulumi

- name: Pulumi Deploy Preview
if: env.PULUMI_TASK == 'deploy'
if: ${{ inputs.pulumi_task }} == 'deploy'
run: |
pulumi preview
working-directory: pulumi

- name: Pulumi Deploy Preview (Detailed)
if: env.PULUMI_TASK == 'deploy'
if: ${{ inputs.pulumi_task }} == 'deploy'
run: |
pulumi preview --json
working-directory: pulumi

- name: Pulumi Destroy Preview
if: env.PULUMI_TASK == 'destroy'
if: ${{ inputs.pulumi_task }} == 'destroy'
run: |
pulumi destroy --diff
working-directory: pulumi
Expand Down

0 comments on commit 675979d

Please sign in to comment.