Skip to content

Commit

Permalink
try yaml map
Browse files Browse the repository at this point in the history
  • Loading branch information
rzlim08 committed Mar 19, 2024
1 parent d597181 commit 5856ab4
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/reusable-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ jobs:
environment: ${{ inputs.environment }}
strategy:
matrix:
app_configs: [
{name: API_URL, value: ${{ inputs.api_url }} },
{name: NEXTGEN_ENTITIES_URL, value: ${{ inputs.nextgen_entities_url }} },
{name: NEXTGEN_WORKFLOWS_URL, value: ${{ inputs.nextgen_workflows_url }} },
{name: ALLOWED_CORS_ORIGINS, value: ${{ inputs.allowed_cors_origin }} },
]
app_configs:
- name: API_URL
value: ${{ inputs.api_url }}
- name: NEXTGEN_ENTITIES_URL
value: ${{ inputs.nextgen_entities_url }}
- name: NEXTGEN_WORKFLOWS_URL
value: ${{ inputs.nextgen_workflows_url }}
- name: ALLOWED_CORS_ORIGINS
value: ${{ inputs.allowed_cors_origin }}
permissions:
id-token: write
contents: read
Expand Down

0 comments on commit 5856ab4

Please sign in to comment.