[env] 초기 패키지 구조 구축 #5 #16
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: Sebadog-book server CI/CD | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
S3_BUCKET_NAME: sebadogapp-deploy | |
jobs: | |
build: | |
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: Build with Gradle | |
# run: ./gradlew clean build | |
run: ./gradlew clean build -x test # 테스트 Skip | |
# 디렉토리 생성 | |
- name: Make Directory | |
run: mkdir -p deploy | |
# Jar 파일 복사 | |
- name: Copy Jar | |
run: cp ./build/libs/*.jar ./deploy | |
# appspec.yml 파일 복사 | |
- name: Copy appspec.yml | |
run: cp appspec.yml ./deploy | |
# script files 복사 | |
- name: Copy script | |
run: cp ./scripts/*.sh ./deploy | |
- name: Make zip file | |
run: zip -r ./sebadog.zip ./deploy | |
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_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./sebadog.zip s3://sebadogapp-deploy/ | |
# Deploy | |
- name: Deploy | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
aws deploy create-deployment --application-name sebadog --deployment-group-name sebadog-group --file-exists-behavior OVERWRITE --s3-location bucket=sebadogapp-deploy,bundleType=zip,key=sebadog.zip --region ap-northeast-2 |