forked from casper-ecosystem/lottery-demo-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.69 KB
/
build.yaml
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: Build images
on:
push:
branches:
- 'main'
permissions:
id-token: write
contents: read
jobs:
build:
name: Build Images
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: api
repository: ECR_REPOSITORY_LOTTERY_DEMO_API
dockerfile: api.dockerfile
context: .
- name: client
repository: ECR_REPOSITORY_LOTTERY_DEMO_CLIENT
dockerfile: client.dockerfile
context: .
- name: handler
repository: ECR_REPOSITORY_LOTTERY_DEMO_EVENT_HANDLER
dockerfile: event-handler.dockerfile
context: .
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_ACCESS_ROLE_DEV }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: ${{ secrets.AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ steps.login-ecr.outputs.registry }}/${{ secrets[format('{0}', matrix.repository)] }}
tags: |
type=sha
type=raw,value=latest
- name: Build and push up
uses: docker/build-push-action@v4
with:
file: infra/docker/${{ matrix.dockerfile }}
context: ${{ matrix.context }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
push: true