Skip to content

Add codecommit.yml

Add codecommit.yml #11

Workflow file for this run

name: default
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ap-northeast-2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
# - name: Login to DockerHub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKER_HUB_USERNAME }}
# password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build, tag, and push docker image to AWS ECR
uses: docker/build-push-action@v3
with:
push: true
tags: |
${{ steps.login-ecr.outputs.registry }}/fcd-classic:${{ github.sha }}
${{ steps.login-ecr.outputs.registry }}/fcd-classic:latest
# terramoney/fcd:classic
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache