diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index f5d3350..e1be54c 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -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