Skip to content

Commit f856ffe

Browse files
authored
ELI-338: Corrects environment name from dev to internal-dev (#311)
1 parent 7f45ebe commit f856ffe

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/dev_sandbox_publish_deploy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ jobs:
6060
make setup-proxygen-credentials
6161
- name: Generate specification
6262
run: |
63-
make construct-spec APIM_ENV=dev
63+
make construct-spec APIM_ENV=internal-dev
6464
65-
- name: Publish dev spec to Proxygen
65+
- name: Publish internal-dev spec to Proxygen
6666
run: |
67-
proxygen spec publish build/specification/dev/eligibility-signposting-api.yaml --no-confirm
67+
proxygen spec publish build/specification/internal-dev/eligibility-signposting-api.yaml --no-confirm
6868
69-
- name: Deploy dev spec to Proxygen
69+
- name: Deploy internal-dev spec to Proxygen
7070
run: |
71-
proxygen instance deploy dev eligibility-signposting-api build/specification/dev/eligibility-signposting-api.yaml --no-confirm
71+
proxygen instance deploy internal-dev eligibility-signposting-api build/specification/internal-dev/eligibility-signposting-api.yaml --no-confirm
7272
7373
sandbox:
7474
needs: dev

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ ifeq ($(APIM_ENV), $(filter $(APIM_ENV), sandbox internal-dev test int ref prepr
120120
@ $(MAKE) set-security APIM_ENV=$$APIM_ENV
121121
@ $(MAKE) set-ratelimit APIM_ENV=$$APIM_ENV
122122
else
123-
@ echo ERROR: $$APIM_ENV is not a valid environment. Please use one of [sandbox, internal-dev, int, ref, prod]
123+
@ echo ERROR: $$APIM_ENV is not a valid environment. Please use one of [sandbox, internal-dev, int, ref, preprod, prod]
124124
@ exit 1;
125125
endif
126126

0 commit comments

Comments
 (0)