Skip to content

Commit

Permalink
[CHORE] 현재 경로 출력하는 코드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji hwan Shin authored and Ji hwan Shin committed Apr 10, 2024
1 parent 85dbfd0 commit 8b33123
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ jobs:
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

- name: Print Current Directory
run: pwd

- name: Create application.properties from secret
run: |
echo "${{ secrets.APPLICATION_SECRET_SPRING_DEV }}" > ./main/src/main/resources/application.properties
echo "${{ secrets.APPLICATION_SECRET_SPRING_DEV }}" > ./main/src/main/resources/application-secret.properties
shell: bash

- name: Build and analyze (SpringBoot)
Expand Down Expand Up @@ -62,6 +65,9 @@ jobs:
path: server/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('server/package-lock.json') }}

- name: Print Current Directory
run: pwd

- name: Create .dev.env from secret
run: |
echo "${{ secrets.APPLICATION_SECRET_NESTJS_DEV }}" > ./server/.dev.env
Expand Down

0 comments on commit 8b33123

Please sign in to comment.