Compare commits

..

4 Commits

Author SHA1 Message Date
9877594b0e pin buildkit version to avoid openet3 error
All checks were successful
Build and Push to Gitea Registry / build-and-push (push) Successful in 2m7s
2025-12-05 22:23:06 +03:00
b8b94de02d Change cache type for building stage
Some checks failed
Build and Push to Gitea Registry / build-and-push (push) Failing after 2m20s
2025-09-08 15:04:48 +03:00
1dcf052278 remove https
Some checks failed
Build and Push to Gitea Registry / build-and-push (push) Failing after 3m15s
2025-09-08 14:58:31 +03:00
0546dc6f71 action fix
Some checks failed
Build and Push to Gitea Registry / build-and-push (push) Failing after 22s
2025-09-08 14:39:37 +03:00

View File

@@ -8,8 +8,8 @@ on:
branches: [main,master]
env:
REGISTRY: ${{ gitea.server_url }}
IMAGE_NAME: ${{ gitea.repository }}
REGISTRY: git.arnike.ru # Use only the domain, not the full URL
IMAGE_NAME: arnike/n8n # Use the namespace/repository format
jobs:
build-and-push:
@@ -24,6 +24,8 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: image=moby/buildkit:v0.23.2
- name: Log in to Gitea Registry
uses: docker/login-action@v3
@@ -51,5 +53,5 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:cache
cache-to: type=inline