Running #103
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: CICD | |
run-name: Running | |
on: | |
push: | |
branches: | |
- develop # develop이라는 브런치로 푸쉬했을 때 실행 | |
- 'releases/**' | |
env: | |
AWS_REGION: ap-northeast-2 | |
AWS_S3_BUCKET: app-release-files | |
AWS_CODE_BUCKET_NAME : unimade-cicd-s3 | |
AWS_CODE_DEPLOY_APPLICATION: unimade-cicd | |
AWS_CODE_DEPLOY_GROUP: unimade-publish-cicd | |
jobs: | |
build-with-gradle: | |
runs-on: ubuntu-20.04 # ubuntu ver | |
steps: | |
- name: develop 브랜치로 이동 | |
uses: actions/checkout@v3 | |
with: | |
ref: develop | |
- name: JDK 17 설치 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Create application.yml | |
run: | | |
mkdir -p src/main/resources | |
echo "${{ secrets.APPLICATION_YML }}" > src/main/resources/application.yml | |
- name: create-json | |
id: create-json | |
uses: jsdaniell/[email protected] | |
with: | |
name: "serviceAccountKey.json" | |
json: ${{ secrets.FIREBASE_KEY }} | |
dir: 'src/main/resources/' | |
- name: gradlew에 실행 권한 부여 | |
run: chmod +x ./gradlew | |
- name: 프로젝트 빌드 | |
run: ./gradlew clean build -x test | |
- name: AWS credential 설정 | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: ${{ env.AWS_REGION }} | |
aws-access-key-id: ${{ secrets.CICD_ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.CICD_SECRET_KEY }} | |
- name: Make zip file | |
run: zip -qq -r ./$GITHUB_SHA.zip . | |
shell: bash | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://${{ env.AWS_CODE_BUCKET_NAME }}/cicdDir/$GITHUB_SHA.zip | |
# - name: S3에 업로드 | |
# run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://${{ env.AWS_CODE_BUCKET_NAME }}/cicdDir/$GITHUB_SHA.zip --source . | |
- name: EC2에 배포 | |
run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=${{ env.AWS_CODE_BUCKET_NAME }},key=cicdDir/$GITHUB_SHA.zip,bundleType=zip |