Skip to content

Commit

Permalink
Pipeline latest removed (#57)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
mlajkim committed Aug 15, 2024
1 parent 9663f1b commit d74dd64
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
if: github.event_name == 'pull_request'
run: docker push ajktown/consistency: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/consistency: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/consistency:latest

- name: Push the Docker image as latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: docker push ajktown/consistency:latest
# - name: Push the Docker image as latest
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
# run: docker push ajktown/consistency:latest

0 comments on commit d74dd64

Please sign in to comment.