diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f8377cf..c299ba9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,13 +5,11 @@ on: branches: - develop # 최종 배포 시 main으로 변경할 것 -# 본인이 설정한 값을 여기서 채워넣습니다. -# 리전, 버킷 이름, CodeDeploy 앱 이름, CodeDeploy 배포 그룹 이름 env: AWS_REGION: ap-northeast-2 - S3_BUCKET_NAME: my-github-actions-s3-bucket - CODE_DEPLOY_APPLICATION_NAME: my-codedeploy-app - CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: my-codedeploy-deployment-group + S3_BUCKET_NAME: thinkerbell-cicd-s3-bucket + CODE_DEPLOY_APPLICATION_NAME: thinkerbell-codedeploy-app + CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: thinkerbell-codedeploy-group permissions: contents: read @@ -27,12 +25,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 - # (2) JDK 11 세팅 - - name: Set up JDK 11 + # (2) JDK 17 세팅 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: distribution: 'temurin' - java-version: '11' + java-version: '17' # (3) Gradle build (Test 제외) - name: Build with Gradle