Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/gongbaek-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Debug Secrets
run: |
echo "Secrets YML value:"
echo "${{ secrets.PROD_CONFIG }}"

- name: Push yml file
run: |
echo ${{ secrets.YML }} > ./src/main/resources/application-prod.yml
mkdir -p ./src/main/resources
ls -l
echo ${{ secrets.PROD_CONFIG }} > ./src/main/resources/application-prod.yml
echo "hello is yml file push success?"
cat ./src/main/resources/application-prod.yml

- name: Build with Gradle
run: ./gradlew -x test clean build
Expand Down
Loading