Skip to content

Commit

Permalink
chore: 배포 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kariskan committed Aug 22, 2024
1 parent e50d784 commit 50623b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -24,7 +24,7 @@ jobs:
# touch ./src/main/resources/application-secret.yml
# GitHub-Actions 에서 설정한 값을 application-secret.yml 파일에 쓰기
echo "${{ secrets.SECRET }}" > ./src/main/resources/application-secret.yml
shell: bash
# shell: bash

- name: grant execute permission
run: chmod +x gradlew
Expand Down

0 comments on commit 50623b9

Please sign in to comment.