fix: get team dao api update #30
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
#- name: Init gradle wrapper | |
# run: gradle init | |
#- name: Init gradle wrapper | |
# run: gradle wrapper | |
# name: Change wrapper permissions | |
# run: chmod +x ./gradlew | |
# Gradle Build | |
- name: Build with Gradle Clean | |
run: ./gradlew clean | |
# Gradle Build | |
- name: Build with Gradle Build | |
run: ./gradlew build -x test | |
# Create application-secret file | |
- name: Create application-secret file | |
run: echo "${{ secrets.APPLICATION_SECRET }}" > src/main/resources/application-secret.properties | |
- name: Make Zip File | |
run: zip -qq -r ./$GITHUB_SHA.zip . | |
shell: bash | |
- 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_PRIVATE_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://${{ secrets.BUCKET_NAME }}/${{ secrets.PROJECT_NAME }}/$GITHUB_SHA.zip | |
- name: Code Deploy To EC2 instance | |
run: aws deploy create-deployment | |
--application-name ${{ secrets.CODE_DEPLOY_APP_NAME }} | |
--deployment-config-name CodeDeployDefault.AllAtOnce | |
--deployment-group-name ${{ secrets.DEPLOYMENT_GROUP_NAME }} | |
--s3-location bucket=${{ secrets.BUCKET_NAME }},bundleType=zip,key=${{ secrets.PROJECT_NAME }}/$GITHUB_SHA.zip |