Skip to content

Commit

Permalink
use singlequotes
Browse files Browse the repository at this point in the history
  • Loading branch information
rikukissa committed Dec 18, 2023
1 parent 3e52c42 commit 98c876e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ jobs:
CONTENT_SECURITY_POLICY_WILDCARD: ${{ vars.CONTENT_SECURITY_POLICY_WILDCARD }}
reset:
needs: deploy
if: ${{ github.event.inputs.reset == "true" && needs.deploy.outputs.outcome == 'success' }}
if: ${{ github.event.inputs.reset == 'true' && needs.deploy.outputs.outcome == 'success' }}
uses: ./.github/workflows/clear-environment.yml
with:
environment: ${{ github.event.inputs.environment }}
secrets: inherit

seed-data:
needs: [deploy, reset]
if: ${{ github.event.inputs.reset == "true" && needs.reset.outputs.outcome == 'success' }}
if: ${{ github.event.inputs.reset == 'true' && needs.reset.outputs.outcome == 'success' }}
uses: ./.github/workflows/seed-data.yml
with:
environment: ${{ github.event.inputs.environment }}
Expand Down

0 comments on commit 98c876e

Please sign in to comment.