Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
cd src/main/resources
touch ./cloud-task-key.json
echo "${{ secrets.CLOUD_TASK_JSON }}" > ./cloud-task-key.json
echo "${{ secrets.CLOUD_TASK_KEY_JSON_BASE64 }}" | base64 -d > cloud-task-key.json
working-directory: ${{ env.working-directory }}

- name: 빌드
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
touch ./cloud-task-key.json

# GitHub-Actions 에서 설정한 값을 cloud-task-key.json 파일에 쓰기..git
echo "${{ secrets.CLOUD_TASK_JSON }}" > ./cloud-task-key.json
echo "${{ secrets.CLOUD_TASK_KEY_JSON_BASE64 }}" | base64 -d > cloud-task-key.json

- name: 빌드
run: |
Expand Down