Skip to content

Commit

Permalink
use buildx cache
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Aug 28, 2024
1 parent f4a530d commit 7d39d96
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-eigenda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
uses: actions/checkout@v4
with:
submodules: 'recursive'
ssh-key: ${{ secrets.SSH_KEY }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -30,6 +29,13 @@ jobs:
with:
install: true

- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
restore-keys: ${{ runner.os }}-buildx-

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit 7d39d96

Please sign in to comment.