Skip to content

Commit

Permalink
Merge branch 'main' of github.com:codestates-seb/seb43_main_009 into dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/gradle.yml
#	client/src/common/GoogleSearch.js
  • Loading branch information
Sniij committed Nov 21, 2023
2 parents 2a753c8 + 93f3d4b commit c0ebc9c
Show file tree
Hide file tree
Showing 65 changed files with 1,141 additions and 715 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Java CI with Gradle

on:
push:
branches: [ "123" ]

permissions:
contents: read

env:
AWS_REGION: ap-northeast-2
S3_BUCKET_NAME: dowajoyak.store
CODE_DEPLOY_APPLICATION_NAME: dowajoyak-CodeDeploy
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: dowajoyak-CodeDeploy-group

jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: ./server

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'

- name: Add permission
run: chmod +x gradlew
working-directory: ${{ env.working-directory }}

- name: Build with Gradle
run: ./gradlew clean build
working-directory: ${{ env.working-directory }}


# build한 후 프로젝트를 압축합니다.
- name: Make zip file
run: zip -r ./seb-main-project-009.zip .
shell: bash

# Access Key와 Secret Access Key를 통해 권한을 확인합니다.
# 아래 코드에 Access Key와 Secret Key를 직접 작성하지 않습니다.
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-region: ap-northeast-2

# 압축한 프로젝트를 S3로 전송합니다.
- name: Upload to AWS S3
run: aws s3 cp --region ap-northeast-2 ./seb-main-project-009.zip s3://$S3_BUCKET_NAME/seb-main-project-009.zip
# CodeDeploy에게 배포 명령을 내립니다.
- name: Code Deploy
run: >
aws deploy create-deployment --application-name $CODE_DEPLOY_APPLICATION_NAME
--deployment-config-name CodeDeployDefault.AllAtOnce
--deployment-group-name $CODE_DEPLOY_DEPLOYMENT_GROUP_NAME
--s3-location bucket=$S3_BUCKET_NAME,bundleType=zip,key=seb-main-project-009.zip
49 changes: 49 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: NodeJS with Webpack

on:
push:
branches: ["FE"]

defaults:
run:
working-directory: ./client #default working directory
env:
AWS_REGION: ap-northeast-2
S3_BUCKET_NAME: dowajoyak.store
API_SERVER: https://server.dowajoyak.store

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Build webpack
run: |
npm i
npm run build
- name: access to secrets
run: |
echo "CX_VALUE=$CX_VALUE" >> .env
env:
CX_VALUE: ${{secrets.CX_VALUE}}

# Access Key와 Secret Access Key를 통해 권한을 확인합니다.
# 아래 코드에 Access Key와 Secret Key를 직접 작성하지 않습니다.
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-region: ap-northeast-2

# 압축한 프로젝트를 S3로 전송합니다.
- name: Upload to AWS S3
run: aws s3 cp --region ap-northeast-2 ./dist s3://$S3_BUCKET_NAME/ --recursive
Loading

0 comments on commit c0ebc9c

Please sign in to comment.