Skip to content

Commit

Permalink
feat: 배포 자동화 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hellomatia authored May 21, 2024
1 parent daf61f5 commit 831dc5a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout 코드
uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v2

- name: Create application-secret.yml
run: |
pwd
touch src/main/resources/application-secret.yml
echo "${{ secrets.APPLICATION_SECRET_YML }}" >> src/main/resources/profiles/application-secret.yml
cat src/main/resources/profiles/application-secret.yml
- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down

0 comments on commit 831dc5a

Please sign in to comment.