Skip to content

Commit

Permalink
fix: GHA booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
lsipii committed Aug 9, 2023
1 parent ed1e99a commit af75cfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
pulumi-access-token: ${{ secrets.PULUMI_ACCESS_TOKEN }}
- name: Deploy codesets
if: ${{ inputs.deploy_codesets == 'true' }}
if: ${{ inputs.deploy_codesets }}
uses: pulumi/actions@v4
with:
work-dir: ./infra/apps/codesets
Expand All @@ -74,7 +74,7 @@ jobs:
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
- name: Deploy Esco API
if: ${{ inputs.deploy_esco_api == 'true' }}
if: ${{ inputs.deploy_esco_api }}
uses: pulumi/actions@v4
with:
work-dir: ./infra/apps/escoApi
Expand Down

0 comments on commit af75cfd

Please sign in to comment.