Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix] mkdir 통해 패키지 생성 #115

Closed
wants to merge 5 commits into from
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