@@ -66,18 +66,18 @@ jobs:
6666 needs : [tag_release, quality_checks, get_commit_id]
6767 uses : ./.github/workflows/docker_image_build.yml
6868 with :
69- VERSION_NUMBER : ${{needs.tag_release .outputs.version_tag }}
69+ VERSION_NUMBER : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
7070 COMMIT_ID : ${{ needs.get_commit_id.outputs.commit_id }}
7171
7272 release_dev :
7373 needs : [tag_release, package_code, get_commit_id]
7474 uses : ./.github/workflows/docker_image_upload.yml
7575 with :
7676 AWS_ENVIRONMENT : dev
77- VERSION_NUMBER : ${{needs.tag_release .outputs.version_tag }}
77+ VERSION_NUMBER : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
7878 COMMIT_ID : ${{ needs.get_commit_id.outputs.commit_id }}
79- TAG_LATEST : true
80- DOCKER_IMAGE_TAG : ${{needs.tag_release .outputs.version_tag }}
79+ TAG_LATEST : false
80+ DOCKER_IMAGE_TAG : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
8181 secrets :
8282 CDK_PUSH_IMAGE_ROLE : ${{ secrets.DEV_CDK_PUSH_IMAGE_ROLE }}
8383
@@ -86,10 +86,10 @@ jobs:
8686 uses : ./.github/workflows/docker_image_upload.yml
8787 with :
8888 AWS_ENVIRONMENT : qa
89- VERSION_NUMBER : ${{needs.tag_release .outputs.version_tag }}
89+ VERSION_NUMBER : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
9090 COMMIT_ID : ${{ needs.get_commit_id.outputs.commit_id }}
91- TAG_LATEST : true
92- DOCKER_IMAGE_TAG : ${{needs.tag_release .outputs.version_tag }}
91+ TAG_LATEST : false
92+ DOCKER_IMAGE_TAG : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
9393 secrets :
9494 CDK_PUSH_IMAGE_ROLE : ${{ secrets.QA_CDK_PUSH_IMAGE_ROLE }}
9595
9898 uses : ./.github/workflows/docker_image_upload.yml
9999 with :
100100 AWS_ENVIRONMENT : ref
101- VERSION_NUMBER : ${{needs.tag_release .outputs.version_tag }}
101+ VERSION_NUMBER : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
102102 COMMIT_ID : ${{ needs.get_commit_id.outputs.commit_id }}
103- TAG_LATEST : true
104- DOCKER_IMAGE_TAG : ${{needs.tag_release .outputs.version_tag }}
103+ TAG_LATEST : false
104+ DOCKER_IMAGE_TAG : pre-release- ${{ needs.get_commit_id .outputs.sha_short }}
105105 secrets :
106106 CDK_PUSH_IMAGE_ROLE : ${{ secrets.REF_CDK_PUSH_IMAGE_ROLE }}
107+
108+ package_npm_code :
109+ needs : [quality_checks, get_commit_id]
110+ uses : ./.github/workflows/package_npm_code.yml
0 commit comments