-
Notifications
You must be signed in to change notification settings - Fork 18
67 lines (58 loc) · 1.85 KB
/
image.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: build images
on:
push:
tags: [ "v*.*.*" ]
workflow_dispatch:
env:
REGISTRY: ghcr.io
jobs:
build_image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
name: [apinode, prover, sequencer]
include:
- name: apinode
image_name: iotexproject/w3bstream-apinode
dockerfile: build/apinode.Dockerfile
- name: prover
image_name: iotexproject/w3bstream-prover
dockerfile: build/prover.Dockerfile
- name: sequencer
image_name: iotexproject/w3bstream-sequencer
dockerfile: build/sequencer.Dockerfile
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ matrix.image_name }}
- name: Build and push Docker image ${{ matrix.name }}
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64, linux/arm64
file: ./${{ matrix.dockerfile }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},name-canonical=true