use cache

This commit is contained in:
Elio Bischof
2025-06-17 02:37:35 +02:00
parent 707d14e344
commit 8bf7b8e5f9
2 changed files with 3 additions and 6 deletions

View File

@@ -40,8 +40,6 @@ jobs:
with: with:
push: false push: false
builder: ${{ steps.buildx.outputs.name }} builder: ${{ steps.buildx.outputs.name }}
set: | load: true
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
- name: Run - name: Run
run: make login-lint run: make login-lint

View File

@@ -1,5 +1,7 @@
group "default" { group "default" {
targets = [ targets = [
"login-pnpm",
"login-dev-base",
"login-lint", "login-lint",
] ]
} }
@@ -11,7 +13,6 @@ variable "LOGIN_PNPM_TAG" {
target "login-pnpm" { target "login-pnpm" {
dockerfile = "dockerfiles/login-pnpm.Dockerfile" dockerfile = "dockerfiles/login-pnpm.Dockerfile"
tags = ["${LOGIN_PNPM_TAG}"] tags = ["${LOGIN_PNPM_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_DEV_BASE_TAG" { variable "LOGIN_DEV_BASE_TAG" {
@@ -24,7 +25,6 @@ target "login-dev-base" {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
tags = ["${LOGIN_DEV_BASE_TAG}"] tags = ["${LOGIN_DEV_BASE_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_LINT_TAG" { variable "LOGIN_LINT_TAG" {
@@ -37,7 +37,6 @@ target "login-lint" {
login-dev-base = "target:login-dev-base" login-dev-base = "target:login-dev-base"
} }
tags = ["${LOGIN_LINT_TAG}"] tags = ["${LOGIN_LINT_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_TEST_UNIT_TAG" { variable "LOGIN_TEST_UNIT_TAG" {