-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (31 loc) · 1009 Bytes
/
deploy.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
name: Docker Image CI/CD Action
on:
push:
tags:
- '*'
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
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 Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
mask-password: 'true'
registry-type: public
- name: Build and tag Docker image
run: |
echo "Building Docker image..."
docker build . -t public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"
- name: Push Docker image to ECR
run: |
echo "Pushing Docker image to ECR..."
docker push public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}"