-
Notifications
You must be signed in to change notification settings - Fork 25
55 lines (54 loc) · 1.47 KB
/
build-and-upload.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
name: Build And Upload
#on:
# push:
# branches:
# - main*
# workflow_dispatch:
# workflow_call:
#
#jobs:
# MakeBinary:
# name: 'MakeContainerImage'
# runs-on: ubuntu-latest
# permissions:
# id-token: write
# contents: read
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
#
# - name: Set up Go 1.x
# uses: actions/setup-go@v4
# with:
# go-version: ~1.19.6
# cache: false
#
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v2
# with:
# role-to-assume: ${{ secrets.TERRAFORM_AWS_ASSUME_ROLE }}
# aws-region: us-west-2
#
# - name: Login to ECR
# if: steps.cached_binaries.outputs.cache-hit == false
# id: login-ecr
# uses: aws-actions/amazon-ecr-login@v1
#
# - name: Set up Docker Buildx
# if: steps.cached_binaries.outputs.cache-hit == false
# uses: docker/setup-buildx-action@v1
#
# - name: Set up QEMU
# if: steps.cached_binaries.outputs.cache-hit == false
# uses: docker/setup-qemu-action@v1
#
# - name: Build Cloudwatch Agent Operator Image and push to ECR
# uses: docker/build-push-action@v4
# if: steps.cached_binaries.outputs.cache-hit == false
# with:
# file: ./Dockerfile
# context: .
# push: true
# tags: ${{ secrets.ECR_OPERATOR_RELEASE_REPOSITORY }}
# platforms: linux/amd64, linux/arm64