Skip to content

Commit 166fd3a

Browse files
committed
fix(ci): bake config
1 parent a6d1e0f commit 166fd3a

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
password: ${{ secrets.GITHUB_TOKEN }}
1616
- uses: docker/bake-action@v6.9.0
1717
with:
18-
source: ./tools
19-
files: ./tools/docker-bake.hcl
18+
files: ./docker-bake.tools.hcl
2019
push: true
2120
set: |
2221
*.cache-from=type=gha
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ group "default" {
33
}
44

55
target "postgres" {
6-
context = "./postgres"
6+
context = "./tools/postgres"
77
dockerfile = "Dockerfile"
88
tags = ["ghcr.io/withlogicco/devcontainers/tools/postgres:latest"]
99
contexts = {
@@ -13,7 +13,7 @@ target "postgres" {
1313
}
1414

1515
target "git" {
16-
context = "./git"
16+
context = "./tools/git"
1717
dockerfile = "Dockerfile"
1818
tags = ["ghcr.io/withlogicco/devcontainers/tools/git:latest"]
1919
contexts = {
@@ -23,7 +23,7 @@ target "git" {
2323
}
2424

2525
target "node" {
26-
context = "./node"
26+
context = "./tools/node"
2727
dockerfile = "Dockerfile"
2828
tags = ["ghcr.io/withlogicco/devcontainers/tools/node:latest"]
2929
contexts = {
@@ -33,7 +33,7 @@ target "node" {
3333
}
3434

3535
target "zsh" {
36-
context = "./zsh"
36+
context = "./tools/zsh"
3737
dockerfile = "Dockerfile"
3838
tags = ["ghcr.io/withlogicco/devcontainers/tools/zsh:latest"]
3939
contexts = {
@@ -43,13 +43,13 @@ target "zsh" {
4343
}
4444

4545
target "base" {
46-
context = "./base"
46+
context = "./tools/base"
4747
dockerfile = "Dockerfile"
4848
tags = ["ghcr.io/withlogicco/devcontainers/tools/base:latest"]
4949
}
5050

5151
target "builder" {
52-
context = "./builder"
52+
context = "./tools/builder"
5353
dockerfile = "Dockerfile"
5454
tags = ["ghcr.io/withlogicco/devcontainers/tools/builder:latest"]
5555
contexts = {

0 commit comments

Comments
 (0)