forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 3
68 lines (59 loc) · 1.73 KB
/
docker-images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Docker Images
on:
push:
branches:
- main
- release-*
- integration
pull_request:
workflow_dispatch:
jobs:
docker-l1:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/l1
context: ./ops-bedrock
dockerfile: ./ops-bedrock/Dockerfile.l1
secrets: inherit
docker-l2:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/l2
context: ./ops-bedrock
dockerfile: ./ops-bedrock/Dockerfile.l2
secrets: inherit
docker-stateviz:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/stateviz
context: .
dockerfile: ./ops-bedrock/Dockerfile.stateviz
secrets: inherit
docker-op-node:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/op-node
context: .
dockerfile: ./op-node/Dockerfile
secrets: inherit
docker-op-proposer:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/op-proposer
context: .
dockerfile: ./op-proposer/Dockerfile
secrets: inherit
docker-op-batcher:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/op-batcher
context: .
dockerfile: ./op-batcher/Dockerfile
secrets: inherit
docker-op-geth-proxy:
uses: ./.github/workflows/docker.yml
with:
images: ghcr.io/espressosystems/op-espresso-integration/op-geth-proxy
context: .
dockerfile: ./op-geth-proxy/Dockerfile
secrets: inherit