Skip to content

Commit

Permalink
Merge pull request #8 from kfit-dev/adhoc/fix-pipeline
Browse files Browse the repository at this point in the history
add setup docker buildx step
  • Loading branch information
umarizulkifli authored Jun 13, 2024
2 parents 8da5a01 + 9b8de77 commit c615631
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the ECR
uses: docker/login-action@v3
with:
Expand All @@ -59,5 +62,9 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
provenance: false

0 comments on commit c615631

Please sign in to comment.