diff --git a/.github/workflows/api-build-tag-push.yaml b/.github/workflows/api-build-tag-push.yaml index 026a5bb0..bca78b15 100644 --- a/.github/workflows/api-build-tag-push.yaml +++ b/.github/workflows/api-build-tag-push.yaml @@ -37,12 +37,12 @@ jobs: # Build the GRS DATS Image - name: Build GRS DATS API Image run: | - cd backend && docker build -t image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-api:${{github.event.pull_request.number}} -f .docker/Dockerfile.prod . + cd backend && docker build -t image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-api-v2:${{github.event.pull_request.number}} -f docker/Dockerfile.prod . # Push the GRS DATS API Image to Artifactory - name: Push the CoCo API Image to Artifactory run: | - docker push image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-api:${{github.event.pull_request.number}} + docker push image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-api-v2:${{github.event.pull_request.number}} Update_Wiki_Tags: needs: [GRS-DATS-API-Build-Tag-Push] diff --git a/backend/src/index.ts b/backend/src/index.ts index 0de4dd77..02f49c9f 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -29,6 +29,7 @@ app.listen(PORT, () => { try { // Log server start information. serverStartupLogs(PORT); + console.log(`API has started, and is listening on ${PORT}`) } catch (error) { // Log any error that occurs during the server start. console.error(error);