Skip to content

Commit

Permalink
[fix] CI/CD 스크립트 에러 수정
Browse files Browse the repository at this point in the history
related to #2
  • Loading branch information
jo0oy committed Jan 2, 2024
1 parent 94ef436 commit 9c2f736
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name: Make docker-compose file
run: |
echo "\n${{ secrets.DOCKER_COMPOSE }}\n" | base64 --decode >> ./docker-compose.yml
echo "\n" >> ./docker-compose.yml
echo "${{ secrets.DOCKER_COMPOSE }}" | base64 --decode >> ./docker-compose.yml
echo "\n" >> ./docker-compose.yml
- name: Grant execute permission for gradlew
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
- name: Make docker-compose file
run: |
echo "\n${{ secrets.DOCKER_COMPOSE }}\n" | base64 --decode >> ./docker-compose.yml
echo "\n" >> ./docker-compose.yml
echo "${{ secrets.DOCKER_COMPOSE }}" | base64 --decode >> ./docker-compose.yml
echo "\n" >> ./docker-compose.yml
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down

0 comments on commit 9c2f736

Please sign in to comment.