Skip to content

Commit

Permalink
feat: getProject Api 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
sominyun committed Sep 7, 2024
1 parent 0be51e1 commit a10e921
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# github repository Actions 페이지에 나타낼 이름
name: soullive A CI with Gradle
name: devocean A CI with Gradle

# event trigger
# main, develop 브랜치에 pr 생성시 실행되는 트리거
Expand Down Expand Up @@ -35,6 +35,13 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: 🐧application.yml 파일을 생성 합니다.
run: |
cd ./src/main/resources
touch ./application.yml
echo "${{ secrets.PROPERTIES }}" > ./application.yml
shell: bash

- name: 🐧gradle build를 위한 권한을 부여합니다.
run: chmod +x gradlew

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# github repository Actions 페이지에 나타낼 이름..
name: soullive A CI/CD with Gradle
name: devocean A CI/CD with Gradle

# event trigger
# main, develop 브랜치에 push 시실행되는 트리거
Expand Down

0 comments on commit a10e921

Please sign in to comment.