Merge pull request #38 from Choi-Jinwook/feat/mypage #55
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: CI/CD nextjs | |
on: | |
push: | |
branches: [ "develop", "main" ] | |
env: | |
ECR_URL: ${{ secrets.ECR_REPO_DEV_FRONT }} | |
ROLE_ARN: ${{ secrets.OIDC_ROLE }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
WEBHOOK_URL: ${{ secrets.WEBHOOK }} | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
call_err_check: | |
name: Call workflow Error Check | |
uses: ./.github/workflows/check_errors.yml | |
build: | |
name: To push ECR | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Docker build | |
run: docker build -t catcher-web . | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: ${{ env.AWS_REGION }} | |
role-session-name: GitHubActions | |
role-to-assume: ${{ env.ROLE_ARN }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Remove Old Image from ECR(CATCHER-WEB) | |
run: | | |
# ECR Front 레포의 기존 이미지 조회 | |
aws ecr describe-images \ | |
--repository-name ${{ secrets.AWS_FRONT_ECR_NAME }} \ | |
--region ${{ secrets.AWS_REGION }} \ | |
--output yaml | grep imageDigest | awk -F ' ' '{print $2}' > ./delete_list.txt | |
# ECR Front 레포의 기존 이미지 모두 삭제 | |
for front_image in `cat ./delete_list.txt` | |
do | |
aws ecr batch-delete-image \ | |
--repository-name ${{ secrets.AWS_FRONT_ECR_NAME }} \ | |
--image-ids imageDigest=$front_image \ | |
--output yaml > /dev/null | |
done | |
- name: Publish Image to ECR(CATCHER-WEB) | |
run: | | |
docker tag catcher-web:latest ${{ env.ECR_URL }}:${{ github.sha }} | |
docker push ${{ env.ECR_URL }}:${{ github.sha }} | |
- name: Deploy to Frontend Instance from ECR Image | |
run: | | |
aws deploy create-deployment \ | |
--application-name ${{ secrets.AWS_DEPLOY_APP_NAME }} \ | |
--deployment-group-name ${{ secrets.AWS_DEPLOY_GROUP }} \ | |
--deployment-config-name ${{ secrets.AWS_DEPLOY_CONFIG }} \ | |
--github-location repository=${{ github.repository }},commitId=${{ github.sha }} | |
- name: Send Notification | |
if: ${{ always() }} | |
run: | | |
if [[ ${{ job.status }} == "success" ]]; then | |
MESSAGE="✅ ${{ job.status }} 프론트 배포 성공 : catcher-web - by ${{ github.actor }}" | |
else | |
MESSAGE="❌ ${{ job.status }} 프론트 배포 실패 : catcher-web - by ${{ github.actor }}" | |
fi | |
curl -X POST -H "Content-Type: application/json" --data "{\"text\":\"${MESSAGE}\"}" ${{ env.WEBHOOK_URL }} |