forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 41
120 lines (113 loc) · 3.96 KB
/
build.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: Build and Push Docker
on:
push:
tags:
- 'v*'
release:
types: [published]
workflow_dispatch:
inputs:
tag:
description: 'Custom Docker Tag (leave blank to use the branch name or commit SHA)'
required: false
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
IMAGE_NAME: hermeznetwork/cdk-erigon
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.prep.outputs.version }}
latest_tag: ${{ env.LATEST_TAG }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Prepare
id: prep
run: |
BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | sed 's/[^a-zA-Z0-9._-]/-/g')
SHORT_SHA=$(echo ${{ github.sha }} | head -c 7)
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV
echo "SHORT_SHA=${SHORT_SHA}" >> $GITHUB_ENV
TAG=${{ github.event.inputs.tag }}
if [[ -z "$TAG" ]]; then
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
TAG=$BRANCH_NAME-$SHORT_SHA
elif [[ "${{ github.event_name }}" == "push" ]]; then
TAG=$SHORT_SHA
elif [[ "${{ github.event_name }}" == "release" ]]; then
TAG=${{ github.event.release.tag_name }}
fi
fi
echo "version=$TAG" >> $GITHUB_OUTPUT
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "LATEST_TAG=false" >> $GITHUB_ENV
else
echo "LATEST_TAG=true" >> $GITHUB_ENV
fi
build-amd64:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ env.DOCKERHUB_TOKEN }}
- name: Build and push AMD64 image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
push: true
tags: ${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-amd64
platforms: linux/amd64
build-arm64:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ env.DOCKERHUB_TOKEN }}
- name: Build and push ARM64 image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
push: true
tags: ${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-arm64
platforms: linux/arm64
create-and-push-manifest:
needs: [prepare, build-amd64, build-arm64]
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ env.DOCKERHUB_TOKEN }}
- name: Create and push manifest
run: |
docker buildx imagetools create \
--tag ${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }} \
${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-amd64 \
${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-arm64
if [ "${{ needs.prepare.outputs.latest_tag }}" == "true" ]; then
docker buildx imagetools create \
--tag ${{ env.IMAGE_NAME }}:latest \
${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-amd64 \
${{ env.IMAGE_NAME }}:${{ needs.prepare.outputs.version }}-arm64
fi