Merge pull request #104 from cvs-go/feature#103 #26
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: Deploy to Amazon EC2 | |
on: | |
push: | |
branches: [ "develop" ] | |
permissions: | |
contents: read | |
env: | |
PROJECT_NAME: cvs-go-server | |
S3_BUCKET_NAME: cvs-go-github-action-s3-bucket | |
CODE_DEPLOY_APPLICATION_NAME: cvsgo-server | |
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: cvsgo-server-group | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Controller and Service Tests with Gradle | |
run: | | |
./gradlew test --tests "com.cvsgo.controller.*" | |
./gradlew test --tests "com.cvsgo.service.*" | |
- name: Build with Gradle | |
run: ./gradlew build -x test | |
- name: Make zip file | |
run: zip -qq -r ./$GITHUB_SHA.zip . | |
shell: bash | |
- name: AWS Configure 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: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://${{ env.S3_BUCKET_NAME }}/${{ env.PROJECT_NAME }}/$GITHUB_SHA.zip | |
- name: Deploy with AWS codeDeploy | |
run: aws deploy create-deployment | |
--application-name ${{ env.CODE_DEPLOY_APPLICATION_NAME }} | |
--deployment-group-name ${{ env.CODE_DEPLOY_DEPLOYMENT_GROUP_NAME }} | |
--deployment-config-name CodeDeployDefault.AllAtOnce | |
--s3-location bucket=$S3_BUCKET_NAME,key=$PROJECT_NAME/$GITHUB_SHA.zip,bundleType=zip |