Skip to content

Commit

Permalink
chore: make config files
Browse files Browse the repository at this point in the history
  • Loading branch information
cyzlcyzl authored Dec 15, 2023
1 parent dbaa332 commit 47d2fcb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ jobs:
with:
java-version: '17'
distribution: 'temurin'

- name: make application-api-key.properties
run: |
cd ./src/main/resources
touch ./application-api-key.properties
echo "${{ secrets.APPLICATION_API_KEY }}" > ./application-api-key.properties
- name: make db-application.properties
run: |
cd ./src/main/resources
touch ./db-application.properties
echo "${{ secrets.DB_APPLICATION }}" > ./db-application.properties
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
Expand Down

0 comments on commit 47d2fcb

Please sign in to comment.