From 39862caf23cd1be70edc630555495816ec27be75 Mon Sep 17 00:00:00 2001 From: Tom Naessens Date: Sun, 9 Jun 2024 18:50:39 +0200 Subject: [PATCH] Remove registry, add cache to build workflow --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2be4208..c9a0970 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,7 @@ jobs: uses: docker/metadata-action@v5 with: images: | + ZeusWPI/Tap ghcr.io/ZeusWPI/Tap tags: | type=sha @@ -36,7 +37,8 @@ jobs: - name: Build and push uses: docker/build-push-action@v5 with: - registry: ${{ env.REGISTRY }} push: true + cache-from: type=gha + cache-to: type=gha,mode=max tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}