Skip to content

Commit

Permalink
feat: #11 ci/cd 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ehs208 committed Oct 20, 2024
1 parent 5061754 commit f75f96a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ jobs:
echo "${{ secrets.YML_OAUTH }}" > ./application-oauth.yml
shell: bash

# 환경별 yml 파일 생성(5) - bucket
- name: make application-bucket.yml
if: contains(github.ref, 'develop')
run: |
cd ./src/main/resources
touch ./application-bucket.yml
echo "${{ secrets.YML_BUCKET }}" > ./application-bucket.yml
shell: bash

# gradle build
- name: Build with Gradle
run: ./gradlew build -x test
Expand Down

0 comments on commit f75f96a

Please sign in to comment.