Skip to content

Commit

Permalink
Merge pull request #12 from team-nabi/NO-JIRA--chore--script-refactor
Browse files Browse the repository at this point in the history
Update and rename cd.yml to CICD.yml
  • Loading branch information
BeommoKoo-dev authored Nov 2, 2023
2 parents dc72338 + e4f4c09 commit 05ac1e6
Showing 1 changed file with 28 additions and 17 deletions.
45 changes: 28 additions & 17 deletions .github/workflows/cd.yml → .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
# workflow의 이름
name: CD
name: CICD

# 해당 workflow가 언제 실행될 것인지에 대한 트리거를 지정
on:
push:
branches: [ "main" ] # main branch로 push 될 때 실행됩니다.
branches: [ "main" ] # master branch로 push 될 때 실행
pull_request:
branches: [ "main" ] # master branch로 pull request될 때 실행

# 해당 yml 내에서 사용할 key - value
env:
S3_BUCKET_NAME: team-01-bucket
PROJECT_NAME: cicd

# workflow는 한개 이상의 job을 가지며, 각 job은 여러 step에 따라 단계를 나눌 수 있습니다.
# workflow는 한개 이상의 job을 가지며, 각 job은 여러 step에 따라 단계를 나눌 수 있음
jobs:
build:
name: CD
# 해당 jobs에서 아래의 steps들이 어떠한 환경에서 실행될 것인지를 지정합니다.
name: CI
# 해당 jobs에서 아래의 steps들이 어떠한 환경에서 실행될 것인지를 지정
runs-on: ubuntu-20.04


# 해당 yml 내에서 사용할 key - value
env:
S3_BUCKET_NAME: team-01-bucket
PROJECT_NAME: cicd

steps:
# 작업에서 액세스할 수 있도록 $GITHUB_WORKSPACE에서 저장소를 체크아웃합니다.
# 작업에서 액세스할 수 있도록 $GITHUB_WORKSPACE에서 저장소를 체크아웃
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
Expand All @@ -31,21 +33,30 @@ jobs:
- name: add Application.yml
run: touch ./src/main/resources/application.yml
shell: bash

- name: copy Application.properties
run: echo "${{ secrets.APPLICATION_YML }}" > ./src/main/resources/application.yml

- name: copy Application.yml
run:
echo "${{ secrets.APPLICATION_YML }}" > ./src/main/resources/application.yml
shell: bash

# gradle 권한 설정
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash


- name: Test with Gradle
run: ./gradlew test

# 빌드
- name: Build with Gradle
run: ./gradlew build
shell: bash

# gradle 권한 설정
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash

- name: Make zip file
run: zip -r ./$GITHUB_SHA.zip .
shell: bash
Expand Down

0 comments on commit 05ac1e6

Please sign in to comment.