aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/docker.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 76e1842..003f919 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -40,16 +40,19 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- - name: Build and push image
+ - name: Build image
uses: docker/build-push-action@v6
with:
file: ${{ matrix.image.dockerfile }}
cache-from: type=gha
cache-to: type=gha,mode=max
- push: true
+ load: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image.tag }}:latest
+ - name: Push image
+ run: docker push ghcr.io/${{ github.repository_owner }}/${{ matrix.image.tag }}:latest
+
- name: Delete previous releases
uses: actions/delete-package-versions@v5
with: