From 6e0490154b35f435ec9ff5aacd25263f8d865bdc Mon Sep 17 00:00:00 2001 From: Seokjin Jeon Date: Thu, 11 Apr 2024 04:09:28 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=8F=84=EC=BB=A4=20=EB=B9=8C=EB=93=9C?= =?UTF-8?q?=20=ED=94=8C=EB=9E=AB=ED=8F=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd-back-dev.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cd-back-dev.yml b/.github/workflows/cd-back-dev.yml index a91a8327f..e23c71e9a 100644 --- a/.github/workflows/cd-back-dev.yml +++ b/.github/workflows/cd-back-dev.yml @@ -44,11 +44,8 @@ jobs: username: ${{ vars.DOCKER_HUB_DEV_USERNAME }} password: ${{ secrets.DOCKER_HUB_DEV_LOGIN_TOKEN }} - - name: Build Docker images - run: docker build -t ${{ vars.DOCKER_DEV_TAG }} . - - - name: Push Docker images - run: docker push ${{ vars.DOCKER_DEV_TAG }} + - name: Build And Push docker image + run: docker build --platform linux/arm64/v8 --push --tag ${{ vars.DOCKER_DEV_TAG }} . - name: run application use ssh uses: appleboy/ssh-action@master