forked from Layr-Labs/optimism-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.75 KB
/
docker-op-stack.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
name: docker-peptide
on:
push:
tags:
- "v*.*.*"
env:
IMAGE_NAME: ghcr.io/polymerdao/optimism
jobs:
docker-build-peptide:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.build-ref }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{raw}}
flavor: |
latest=false
labels: |
org.opencontainers.image.source=https://github.com/polymerdao/optimism-eigenda
org.opencontainers.image.title=polymer
org.opencontainers.image.url=https://github.com/polymerdao/optimism-eigenda
- name: Authenticate Docker
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker images
run: |
docker buildx bake \
--progress plain \
--load \
-f docker-bake.hcl \
op-node op-batcher op-proposer op-challenger
env:
REGISTRY: ghcr.io
REPOSITORY: polymerdao/optimism
IMAGE_TAGS: ${{ github.ref_name }}
GIT_COMMIT: ${{ github.github_sha }}
- name: Push Docker images
run: |
IMAGES=("op-node" "op-batcher" "op-proposer" "op-challenger")
for image in "${IMAGES[@]}"
do
echo "Pushing $image"
docker push ghcr.io/polymerdao/optimism/$image:${{ github.ref_name }}
done