-
Notifications
You must be signed in to change notification settings - Fork 132
122 lines (102 loc) · 3.64 KB
/
services-base.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
121
122
on:
push:
branches:
- 'main'
paths:
- .github/workflows/base-image.yml
- docker/base.Dockerfile
pull_request:
paths:
- .github/workflows/base-image.yml
- docker/base.Dockerfile
env:
REGISTRY: ghcr.io
IMAGE_NAME: blockscout/services-base
jobs:
check_tag:
name: Check tag existence
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.get_image_tag.outputs.tag }}
is_new: ${{ steps.check_existence.outputs.is_new }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get image tag
id: get_image_tag
env:
DOCKERFILE_PATH: "docker/base.Dockerfile"
run: |
CONTENT=$(cat $DOCKERFILE_PATH)
nl=$'\n'
if [[ $CONTENT =~ ARG\ CARGO_CHEF_VERSION=([^$nl]+) ]]; then
CARGO_CHEF_TAG=${BASH_REMATCH[1]}
else
echo "Failed to extract CARGO_CHEF_TAG from Dockerfile"
exit 1
fi
if [[ $CONTENT =~ ARG\ PROTOC_VERSION=([^$nl]+) ]]; then
PROTOC_VERSION=${BASH_REMATCH[1]}
else
echo "Failed to extract PROTOC_VERSION from Dockerfile"
exit 1
fi
if [[ $CONTENT =~ ARG\ PROTOC_GEN_OPENAPIV2_VERSION=([^$nl]+) ]]; then
PROTOC_GEN_OPENAPIV2_VERSION=${BASH_REMATCH[1]}
else
echo "Failed to extract PROTOC_GEN_OPENAPIV2_VERSION from Dockerfile"
exit 1
fi
TAG=chef-${CARGO_CHEF_TAG}-protoc-${PROTOC_VERSION}-openapi-${PROTOC_GEN_OPENAPIV2_VERSION}
echo "TAG=$TAG"
# Save values to be available from the next steps
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Check image tag exists
id: check_existence
env:
TAG: ${{ steps.get_image_tag.outputs.tag }}
run: |
TOKEN=$(echo ${{ secrets.GITHUB_TOKEN }} | base64)
EXISTING_TAGS=$(curl -H "Authorization: Bearer ${TOKEN}" https://ghcr.io/v2/${IMAGE_NAME}/tags/list)
echo "a=${EXISTING_TAGS}"
if echo "${EXISTING_TAGS}" | jq -e "if has(\"tags\") then .tags else [] end | map(select(. == \"$TAG\")) | length > 0" > /dev/null; then
echo "There is already a pushed image with ${TAG} as tag. Skipping."
echo "is_new=false" >> $GITHUB_OUTPUT
else
echo "is_new=true" >> $GITHUB_OUTPUT
fi
build_and_push:
name: Build and push
needs:
- check_tag
if: needs.check_tag.outputs.is_new == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: "docker"
file: "docker/base.Dockerfile"
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.check_tag.outputs.tag }} , ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
platforms: |
linux/amd64
linux/arm64/v8
labels: ${{ steps.meta.outputs.labels }}