Skip to content

Commit

Permalink
Merge pull request #168 from sparcs-kaist/feat/cache-on-github-action
Browse files Browse the repository at this point in the history
  • Loading branch information
withSang authored Sep 16, 2023
2 parents 6bdc273 + f72130d commit d0e8b57
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions .github/workflows/dev-build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,29 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . -f Dockerfile -t ghcr.io/sparcs-kaist/zabo-front:dev
- name: Log in to DockerHub
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Log in to Github Container Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u USERNAME --password-stdin
- name: Push the Docker image
run: docker push ghcr.io/sparcs-kaist/zabo-front:dev
- name: Build and push Image
id: docker-build
uses: docker/build-push-action@v2
env:
IMAGE_TAG: dev
with:
push: true
tags: "ghcr.io/sparcs-kaist/zabo-front:${{ env.IMAGE_TAG }}"
# (3)
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Remove old cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

0 comments on commit d0e8b57

Please sign in to comment.