action fix
Some checks failed
Build and Push to Gitea Registry / build-and-push (push) Failing after 22s

This commit is contained in:
2025-09-08 14:39:37 +03:00
parent 2c167288f6
commit 0546dc6f71

View File

@@ -36,7 +36,7 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.IMAGE_NAME }} # ← REMOVED REGISTRY URL FROM HERE
tags: | tags: |
type=ref,event=tag type=ref,event=tag
type=semver,pattern={{version}} type=semver,pattern={{version}}
@@ -49,7 +49,8 @@ jobs:
with: with:
context: . context: .
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: |
${{ env.REGISTRY }}/${{ steps.meta.outputs.tags }} # ← ADD REGISTRY URL HERE INSTEAD
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max