test: 테스트용 application.yml 생성 #1
Workflow file for this run
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: CD | |
on: | |
push: | |
branches: [ "main", "feature/deploy" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{secrets.PRIVATE_TOKEN}} | |
submodules: true | |
- 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: Make directory for deliver | |
run: mkdir deploy | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
- name: Copy jar | |
run: cp ./build/libs/*.jar ./$GITHUB_SHA.jar | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.jar s3://team3rdparty-bucket/deploy/$GITHUB_SHA.jar | |
- name: Deploy | |
run: | | |
aws deploy create-deployment \ | |
--application-name ticketing \ | |
--deployment-config-name CodeDeployDefault.AllAtOnce \ | |
--deployment-group-name ticketing \ | |
--file-exists-behavior OVERWRITE \ | |
--s3-location bucket=team3rdparty-bucket,bundleType=zip,key=deploy/$GITHUB_SHA.zip \ | |
--region ap-northeast-2 \ | |
--ec2-tag-filter Key=Name,Value=team3-ticket,Type=KEY_AND_VALUE |