File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- name : Build docker image for amd64 and arm64
1+ name : Build ASYNC
22
33on :
44 workflow_dispatch :
@@ -20,15 +20,15 @@ jobs:
2020 id : compute-tags
2121 run : |
2222 PACKAGE_VERSION=$(cat package.json | jq -r '.version')
23- DOCKER_HUB_TAG_BASE=dockerhubrepo /${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
23+ DOCKER_HUB_TAG_BASE=async /${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
2424 DOCKER_HUB_TAG_LATEST=${DOCKER_HUB_TAG_BASE}-latest
2525 if [ "${{github.ref_name}}" = "prod" ]; then
2626 DOCKER_HUB_TAG_VERSION=${DOCKER_HUB_TAG_BASE}-${PACKAGE_VERSION}
2727 else
2828 DOCKER_HUB_TAG_VERSION=""
2929 fi
30- echo "::set-output name= tag_latest:: ${DOCKER_HUB_TAG_LATEST}"
31- echo "::set-output name= tag_version:: ${DOCKER_HUB_TAG_VERSION}"
30+ echo "tag_latest= ${DOCKER_HUB_TAG_LATEST}" >> $GITHUB_OUTPUT
31+ echo "tag_version= ${DOCKER_HUB_TAG_VERSION}" >> $GITHUB_OUTPUT
3232
3333 build_amd64 :
3434 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1- name : Build image and push on repository
1+ name : Build SYNC
22
33on :
44 workflow_dispatch :
2525 id : compute-tags
2626 run : |
2727 PACKAGE_VERSION=$(cat package.json | jq -r '.version')
28- DOCKER_HUB_TAG_BASE=${{secrets.DOCKERHUB_USERNAME}} /${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
28+ DOCKER_HUB_TAG_BASE=sync /${DOCKER_HUB_IMAGE_NAME}:${{github.ref_name}}
2929 DOCKER_HUB_TAG_LATEST=${DOCKER_HUB_TAG_BASE}-latest
3030 # Conditional version tag (only for prod)
3131 if [ "${{github.ref_name}}" = "prod" ]; then
You can’t perform that action at this time.
0 commit comments