Skip to content

Commit

Permalink
Fix production json boolean github-script-poc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
daveboster authored Nov 24, 2023
1 parent 2f60e2f commit 201e050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-script-poc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
required_contexts: [],
task: "deploy",
environment: "${{ env.project_name }}-${{ env.environment_name }}",
production_environment: "${{ env.is_production }}"
production_environment: ${{ env.is_production }}
});
console.log(deployment);
if (deployment.status === 201) {
Expand All @@ -60,5 +60,5 @@ jobs:
description: "${{ env.deployment_description }}",
environment_url: "${{ env.environment_url }}",
environment: "${{ env.project_name }}-${{ env.environment_name }}",
production_environment: "${{ env.is_production }}"
production_environment: ${{ env.is_production }}
});

0 comments on commit 201e050

Please sign in to comment.