Skip to content

Commit

Permalink
[7주차] CI working directory 설정 방식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sunseo18 committed Nov 28, 2023
1 parent 0a92d08 commit 409abc4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
jobs:
build:
runs-on: ubuntu-20.04
env:
working-directory: Second Seminar/SecondSeminar

steps:
- uses: actions/checkout@v3
Expand All @@ -19,10 +21,9 @@ jobs:

- name: application.yaml 생성 및 빌드
run: |
cd Second\ Seminar/SecondSeminar
echo "${{ secrets.APPLICATION }}" > ./application.yaml
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash

0 comments on commit 409abc4

Please sign in to comment.