Merge pull request #42 from cofinder-team/feature/swm-384 #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push Docker image to ECR and Deploy EB | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
- name: Login to AWS ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Build and Tag Docker | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: ${{ github.ref == 'refs/heads/master' && secrets.ECR_REPOSITORY || secrets.DEV_ECR_REPOSITORY }} | |
IMAGE_TAG: ${{ secrets.IMAGE_TAG }} | |
run: docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
- name: Push Docker image to ECR | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: ${{ github.ref == 'refs/heads/master' && secrets.ECR_REPOSITORY || secrets.DEV_ECR_REPOSITORY }} | |
IMAGE_TAG: ${{ secrets.IMAGE_TAG }} | |
run: | | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Get current time | |
uses: 1466587594/get-current-time@v2 | |
id: current-time | |
with: | |
format: YYYYMMDD_HH-mm-ss | |
utcOffset: "+09:00" | |
- name: Generate deployment package | |
env: | |
DOCKER_CONFIG_FILE: ${{ github.ref == 'refs/heads/master' && 'Dockerrun.aws.json' || 'develop-Dockerrun.aws.json' }} | |
run: | | |
mkdir -p deploy | |
cp $DOCKER_CONFIG_FILE deploy/Dockerrun.aws.json | |
cd deploy && zip -r deploy.zip . | |
- name: Beanstalk Deploy | |
uses: einaregilsson/beanstalk-deploy@v14 | |
env: | |
EB_APPLICATION_NAME : ${{ secrets.AWS_BEANSTALK_APP_NAME }} | |
EB_ENVIRONMENT_NAME: ${{ github.ref == 'refs/heads/master' && secrets.AWS_BEANSTALK_ENV_NAME || secrets.DEV_AWS_BEANSTALK_ENV_NAME }} | |
with: | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
application_name: ${{ env.EB_APPLICATION_NAME }} | |
environment_name: ${{ env.EB_ENVIRONMENT_NAME }} | |
version_label: earth-docker-${{steps.current-time.outputs.formattedTime}} | |
region: ${{ secrets.AWS_DEFAULT_REGION }} | |
deployment_package: deploy/deploy.zip | |
wait_for_environment_recovery: 200 | |
notify: | |
needs: deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send deployment notification | |
uses: rtCamp/action-slack-notify@v2.2.0 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: logs | |
SLACK_USERNAME: github-actions | |
SLACK_MESSAGE: | | |
*${{ github.repository }}* has been deployed to *${{ github.ref }}* by *${{ github.actor }}* | |
${{ github.event.head_commit.message }} | |
${{ github.event.head_commit.url }} |