summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Munteanu <luth@luthcode.net>2021-07-28 02:19:34 +0300
committerPaul Munteanu <luth@luthcode.net>2021-07-28 02:19:34 +0300
commita450786e140fbc1081496bc0561f646e37d682fd (patch)
treefd3472e2c22193452e14c5e2ca9f34bc2776800f
parentFix docker builds (diff)
downloadserver-a450786e140fbc1081496bc0561f646e37d682fd.tar.xz
Docker image layer caching using GHA cache
-rw-r--r--.github/workflows/docker-publish.yml19
1 files changed, 18 insertions, 1 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml

index f479840f..b261dfd8 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml
@@ -16,6 +16,14 @@ jobs: 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: Login to DockerHub uses: docker/login-action@v1 with: @@ -27,4 +35,13 @@ jobs: with: context: . push: true - tags: luth31/fosscord-api:latest \ No newline at end of file + tags: luth31/fosscord-api:latest + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new + - + # Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are released + # https://github.com/docker/build-push-action/pull/406#issuecomment-879184394 + name: Move cache fix + run: | + rm -rf /tmp/.buildx-cache + mv /tmp/.buildx-cache-new /tmp/.buildx-cache