Skip to content

Commit 42be311

Browse files
committed
fix failing docker builds
1 parent abf969f commit 42be311

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/publish.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- dockerfile: ./mock-alto-bundler/Dockerfile
16+
- context: ./mock-alto-bundler
17+
dockerfile: ./mock-alto-bundler/Dockerfile
1718
image: ghcr.io/pimlicolabs/mock-alto-bundler
18-
- dockerfile: ./mock-verifying-paymaster/Dockerfile
19+
- context: ./mock-verifying-paymaster
20+
dockerfile: ./mock-verifying-paymaster/Dockerfile
1921
image: ghcr.io/pimlicolabs/mock-verifying-paymaster
2022
permissions:
2123
contents: read
@@ -41,7 +43,7 @@ jobs:
4143
- name: Build and push Docker images
4244
uses: docker/build-push-action@v5
4345
with:
44-
context: .
46+
context: ${{ matrix.context }}
4547
file: ${{ matrix.dockerfile }}
4648
push: true
4749
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)