From b3af0f0b355f6d6dff14b58f98fcdfd743852feb Mon Sep 17 00:00:00 2001 From: Edd Almond <102675624+eddalmond1@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:03:19 +0000 Subject: [PATCH] eja - adding missing docker image deploy --- .github/workflows/dev_sandbox_publish_deploy.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev_sandbox_publish_deploy.yaml b/.github/workflows/dev_sandbox_publish_deploy.yaml index bfc659c..eb7ae57 100644 --- a/.github/workflows/dev_sandbox_publish_deploy.yaml +++ b/.github/workflows/dev_sandbox_publish_deploy.yaml @@ -104,18 +104,21 @@ jobs: mkdir -p ~/.proxygen echo "$PROXYGEN_PRIVATE_KEY" > ~/.proxygen/eligibility-signposting-api-prod.pem make setup-proxygen-credentials ENV=prod + - name: Generate specification run: | make construct-spec APIM_ENV=sandbox - - - name: Publish sandbox spec to Proxygen - run: | - proxygen spec publish build/specification/sandbox/eligibility-signposting-api.yaml --no-confirm + make generate-sandbox-spec - name: Deploy sandbox spec to Proxygen run: | proxygen instance deploy sandbox eligibility-signposting-api build/specification/sandbox/eligibility-signposting-api.yaml --no-confirm + - name: Build and publish sandbox Docker image + run: | + make build-and-publish-sandbox-image + + publish_postman: name: "Publish to Postman" needs: sandbox