From e9d87084f4df266cc3e93a8d43962a30f4c24359 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Thu, 9 Jul 2020 17:49:53 +0530 Subject: [PATCH] Correcting the Docker image repository path for CE server builds --- .github/workflows/server.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index bc880e5b5e..60c5c2d542 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-ee:${{steps.vars.outputs.tag}} . + docker build -t appsmith/appsmith-server:${{steps.vars.outputs.tag}} . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-server-ee + docker push appsmith/appsmith-server # 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-ee:${GITHUB_SHA} . - docker build -t appsmith/appsmith-server-ee:latest . + docker build -t appsmith/appsmith-server:${GITHUB_SHA} . + docker build -t appsmith/appsmith-server:latest . echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin - docker push appsmith/appsmith-server-ee + docker push appsmith/appsmith-server