Skip to content

Commit

Permalink
action : application-prod 으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Astin01 authored Apr 30, 2024
1 parent ffef609 commit f4ab69d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,20 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Set YML
- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set PROD_PROP
run: |
mkdir -p src/main/resources
echo "${{ secrets.APPLICATION_PROP }}" | base64 --decode > src/main/resources/application.properties
echo "${{ secrets.APPLICATION_PROP }}" | base64 --decode > src/main/resources/application-prod.properties
find src
- name: Grant execute permission for gradlew
Expand Down

0 comments on commit f4ab69d

Please sign in to comment.