Skip to content

Commit

Permalink
test if
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvija Tovernic committed Sep 27, 2024
1 parent b719f92 commit 9b6a18e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/pulumi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ env:
CONTAINER_PORT: ${{ inputs.container_port }}
HOST_PORT: ${{ inputs.host_port }}

PULUMI_TASK: ${{ inputs.pulumi_task }}


jobs:

Expand Down Expand Up @@ -125,7 +123,7 @@ jobs:
name: Pulumi Deploy
runs-on: ubuntu-latest
needs: preview
if: env.PULUMI_TASK == 'deploy'
if: inputs.pulumi_task == 'deploy'
environment: ${{ inputs.environment }}

steps:
Expand Down Expand Up @@ -173,7 +171,7 @@ jobs:
name: Pulumi Destroy
runs-on: ubuntu-latest
needs: preview
if: env.PULUMI_TASK == 'destroy'
if: inputs.pulumi_task == 'destroy'
environment: ${{ inputs.environment }}

steps:
Expand Down

0 comments on commit 9b6a18e

Please sign in to comment.