diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index df7a64ccde..49d2d7b121 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -267,7 +267,7 @@ jobs: build-args: | APPSMITH_SEGMENT_CE_KEY=${{ secrets.APPSMITH_SEGMENT_CE_KEY }} tags: | - ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-ce:${{needs.prelude.outputs.tag}} + ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-${{ vars.EDITION }}:${{needs.prelude.outputs.tag}} # Only build & tag with latest if the tag doesn't contain beta - name: Build and push fat image latest @@ -280,4 +280,4 @@ jobs: build-args: | APPSMITH_SEGMENT_CE_KEY=${{ secrets.APPSMITH_SEGMENT_CE_KEY }} tags: | - ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-ce:latest + ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-${{ vars.EDITION }}:latest diff --git a/.github/workflows/on-demand-build-docker-image-deploy-preview.yml b/.github/workflows/on-demand-build-docker-image-deploy-preview.yml index 7b590557e4..5962edc982 100644 --- a/.github/workflows/on-demand-build-docker-image-deploy-preview.yml +++ b/.github/workflows/on-demand-build-docker-image-deploy-preview.yml @@ -183,7 +183,7 @@ jobs: APPSMITH_CLOUD_SERVICES_BASE_URL=https://release-cs.appsmith.com outputs: - imageHash: ce-${{ github.event.client_payload.pull_request.number }} + imageHash: ${{ vars.EDITION }}-${{ github.event.client_payload.pull_request.number }} build-deploy-preview: needs: [push-image] @@ -249,4 +249,4 @@ jobs: with: issue-number: ${{ github.event.client_payload.pull_request.number }} body: | - Deploy-Preview-URL: https://ce-${{ github.event.client_payload.pull_request.number }}.dp.appsmith.com + Deploy-Preview-URL: https://${{ vars.EDITION }}-${{ github.event.client_payload.pull_request.number }}.dp.appsmith.com diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index 0a21720be2..8cbf41b223 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -202,7 +202,7 @@ jobs: APPSMITH_SEGMENT_CE_KEY=${{ secrets.APPSMITH_SEGMENT_CE_KEY_RELEASE }} APPSMITH_CLOUD_SERVICES_BASE_URL=https://release-cs.appsmith.com tags: | - ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-ce:release + ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-${{ vars.EDITION }}:release package-master: needs: ci-test @@ -269,5 +269,5 @@ jobs: build-args: | APPSMITH_SEGMENT_CE_KEY=${{ secrets.APPSMITH_SEGMENT_CE_KEY }} tags: | - ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-ce:${{ github.sha }} - ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-ce:nightly + ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-${{ vars.EDITION }}:${{ github.sha }} + ${{ vars.DOCKER_HUB_ORGANIZATION }}/appsmith-${{ vars.EDITION }}:nightly