From 5e6f5dd7d3fa017b24c52ed76ac4edb7911889ec Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Thu, 9 Jul 2020 21:38:14 +0530 Subject: [PATCH] Correcting the Docker images for the appsmith editor and server for EE versions --- .github/workflows/client.yml | 10 +++++----- .github/workflows/server.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index ceb9740248..61660fee0b 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -73,15 +73,15 @@ jobs: - name: Push release image to Docker Hub if: success() && github.ref == 'refs/heads/release' run: | - docker build -t appsmith/appsmith-editor:${{steps.branch_name.outputs.tag}} . + docker build -t appsmith/appsmith-editor-ee:${{steps.branch_name.outputs.tag}} . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-editor + docker push appsmith/appsmith-editor-ee # Build master Docker image and push to Docker Hub - name: Push production image to Docker Hub with commit tag if: success() && github.ref == 'refs/heads/master' run: | - docker build -t appsmith/appsmith-editor:${GITHUB_SHA} . - docker build -t appsmith/appsmith-editor:latest . + docker build -t appsmith/appsmith-editor-ee:${GITHUB_SHA} . + docker build -t appsmith/appsmith-editor-ee:latest . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-editor \ No newline at end of file + docker push appsmith/appsmith-editor-ee \ No newline at end of file diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 60c5c2d542..bc880e5b5e 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -68,15 +68,15 @@ jobs: - name: Push release image to Docker Hub if: success() && github.ref == 'refs/heads/release' run: | - docker build -t appsmith/appsmith-server:${{steps.vars.outputs.tag}} . + docker build -t appsmith/appsmith-server-ee:${{steps.vars.outputs.tag}} . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-server + docker push appsmith/appsmith-server-ee # Build master Docker image and push to Docker Hub - name: Push master image to Docker Hub with commit tag if: success() && github.ref == 'refs/heads/master' run: | - docker build -t appsmith/appsmith-server:${GITHUB_SHA} . - docker build -t appsmith/appsmith-server:latest . + docker build -t appsmith/appsmith-server-ee:${GITHUB_SHA} . + docker build -t appsmith/appsmith-server-ee:latest . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-server + docker push appsmith/appsmith-server-ee