Skip to content

Commit

Permalink
Try to deploy fhir-dispensing API first
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-szlapa committed Nov 14, 2024
1 parent 19bfdac commit 264f31a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/run_release_code_and_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,32 +247,32 @@ jobs:
role-to-assume: ${{ secrets.PROXYGEN_ROLE }}
role-session-name: proxygen-ptl

- name: Deploy fhir-prescribing API
- name: Deploy fhir-dispensing API
shell: bash
working-directory: .github/scripts
if: ${{ inputs.DEPLOY_APIGEE == true && always() && !failure() && !cancelled() }}
env:
VERSION_NUMBER: ${{ inputs.VERSION_NUMBER }}
SPEC_PATH: ${{ env.SPEC_PATH_PRESCRIBING }}
SPEC_PATH: ${{ env.SPEC_PATH_DISPENSING }}
STACK_NAME: ${{ inputs.STACK_NAME }}
AWS_ENVIRONMENT: ${{ inputs.AWS_ENVIRONMENT }}
APIGEE_ENVIRONMENT: ${{ inputs.APIGEE_ENVIRONMENT }}
PROXYGEN_PRIVATE_KEY_NAME: PrescribingProxygenPrivateKey
PROXYGEN_KID: fhir-prescribing
PROXYGEN_PRIVATE_KEY_NAME: DispensingProxygenPrivateKey
PROXYGEN_KID: fhir-dispensing
DRY_RUN: false
run: ./deploy_api.sh

- name: Deploy fhir-dispensing API
- name: Deploy fhir-prescribing API
shell: bash
working-directory: .github/scripts
if: ${{ inputs.DEPLOY_APIGEE == true && always() && !failure() && !cancelled() }}
env:
VERSION_NUMBER: ${{ inputs.VERSION_NUMBER }}
SPEC_PATH: ${{ env.SPEC_PATH_DISPENSING }}
SPEC_PATH: ${{ env.SPEC_PATH_PRESCRIBING }}
STACK_NAME: ${{ inputs.STACK_NAME }}
AWS_ENVIRONMENT: ${{ inputs.AWS_ENVIRONMENT }}
APIGEE_ENVIRONMENT: ${{ inputs.APIGEE_ENVIRONMENT }}
PROXYGEN_PRIVATE_KEY_NAME: DispensingProxygenPrivateKey
PROXYGEN_KID: fhir-dispensing
PROXYGEN_PRIVATE_KEY_NAME: PrescribingProxygenPrivateKey
PROXYGEN_KID: fhir-prescribing
DRY_RUN: false
run: ./deploy_api.sh

0 comments on commit 264f31a

Please sign in to comment.