From 76418dac1db962425c19b0a78e07fcc5271a4b68 Mon Sep 17 00:00:00 2001 From: morbalint Date: Tue, 12 Mar 2024 23:41:31 +0100 Subject: [PATCH] ci: try fix docker push --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 929bf57..5a9f758 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,12 +33,13 @@ jobs: file: Kemkas.Web/Dockerfile cache-from: type=gha cache-to: type=gha,mode=max - push: true + push: false load: true tags: | ghcr.io/${{ github.repository_owner }}/kemkas-backend:${{ env.GITHUB_SHA_SHORT }} + registry.digitalocean.com/kemkas/kemkas-be:${{ env.GITHUB_SHA_SHORT }} - run: | - docker tag ghcr.io/${{ github.repository_owner }}/kemkas-backend:${{ env.GITHUB_SHA_SHORT }} registry.digitalocean.com/kemkas/kemkas-be:${{ env.GITHUB_SHA_SHORT }} + docker push ghcr.io/${{ github.repository_owner }}/kemkas-backend:${{ env.GITHUB_SHA_SHORT }} docker push registry.digitalocean.com/kemkas/kemkas-be:${{ env.GITHUB_SHA_SHORT }} - uses: actions/checkout@v4 with: