From 805033c63e33d86bb68e374887d7ae514576dd1d Mon Sep 17 00:00:00 2001 From: Aaron Jeongwoo Kim <53258958+mlajkim@users.noreply.github.com> Date: Thu, 1 Aug 2024 08:55:19 +0900 Subject: [PATCH] Pipeline latest removed (#140) # Background The current github pipeline builds an image on non-arm CPU, and the current ajktown's production ec2 instance uses arm CPU. ## Checklist Before PR Review - [x] The following has been handled: - `Draft` is set for this PR - `Title` is checked - `Background` is filled - `Assignee` is set - `Labels` are set - `development` is linked if related issue exists ## Checklist (Right Before PR Review Request) - [x] The following has been handled: - `TODOs` are handled and checked - Final Operation Check is done - Make this PR as an open PR ## Checklist (Reviewers) - [x] Check if there are any other missing TODOs that are not yet listed - [x] Review Code - [x] Every item on the checklist has been addressed accordingly - [x] If `development` is associated to this PR, you must check if every TODOs are handled --- .github/workflows/docker-image.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index 2a60add..187714c 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -32,10 +32,10 @@ jobs: if: github.event_name == 'pull_request' run: docker push ajktown/api:pr${{ github.event.pull_request.number }} - - name: Build the Docker image as latest - if: github.ref == 'refs/heads/main' && github.event_name == 'push' - run: docker build . --file Dockerfile --tag ajktown/api:latest + # - name: Build the Docker image as latest + # if: github.ref == 'refs/heads/main' && github.event_name == 'push' + # run: docker build . --file Dockerfile --tag ajktown/api:latest - - name: Push the Docker image as latest - if: github.ref == 'refs/heads/main' && github.event_name == 'push' - run: docker push ajktown/api:latest + # - name: Push the Docker image as latest + # if: github.ref == 'refs/heads/main' && github.event_name == 'push' + # run: docker push ajktown/api:latest