forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 9
77 lines (66 loc) · 2.51 KB
/
build_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
68
69
70
71
72
73
74
75
76
77
name: Build Geth Docker Image
on:
release:
types: [created]
workflow_dispatch:
jobs:
build-and-push-stage:
runs-on: ubuntu-latest
environment: stage
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Set IMAGE_TAG
id: set_image_tag
run: |
echo "::set-output name=IMAGE_TAG::$(printf $GITHUB_REF_NAME | tr / -)"
- name: Build, tag, and push image to Amazon ECR
env:
IMAGE_TAG: ${{ steps.set_image_tag.outputs.IMAGE_TAG }}
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: geth
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:${{ github.sha }} \
--build-arg COMMIT=${{ github.sha }} \
--build-arg VERSION=${IMAGE_TAG} \
--build-arg BUILDNUM=1 .
docker image push --all-tags $ECR_REGISTRY/$ECR_REPOSITORY
build-and-push-prod:
runs-on: ubuntu-latest
environment: prod
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Set IMAGE_TAG
id: set_image_tag
run: |
echo "::set-output name=IMAGE_TAG::$(printf $GITHUB_REF_NAME | tr / -)"
- name: Build, tag, and push image to Amazon ECR
env:
IMAGE_TAG: ${{ steps.set_image_tag.outputs.IMAGE_TAG }}
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: geth
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:${{ github.sha }} \
--build-arg COMMIT=${{ github.sha }} \
--build-arg VERSION=${IMAGE_TAG} \
--build-arg BUILDNUM=1 .
docker image push --all-tags $ECR_REGISTRY/$ECR_REPOSITORY