Skip to content

Commit

Permalink
Merge pull request #5 from codestates-seb/dev
Browse files Browse the repository at this point in the history
fix : working-directory
  • Loading branch information
Ciel-azure authored Mar 8, 2023
2 parents a580de9 + 59b6887 commit 16515bc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
build:

runs-on: ubuntu-latest
env:
working-directory: ./server

steps:
- uses: actions/checkout@v3
Expand All @@ -31,13 +33,15 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'
cache: 'gradle'

- name: Add permission
run: chmod +x ./gradlew
working-directory: ${{ env.working-directory }}
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: build

run: ./gradlew clean build --debug
working-directory: ${{ env.working-directory }}



# build한 후 프로젝트를 압축합니다.
Expand Down

0 comments on commit 16515bc

Please sign in to comment.