Skip to content

Commit

Permalink
docker-image.yml 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yooonwodyd committed Dec 21, 2023
1 parent cd05a50 commit edef6a8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@ name: Docker Image CI

on:
push:
branches: [ "develop"]
branches: ["develop"]

jobs:
CI-CD:
runs-on: ubuntu-latest
steps:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
# gradle caching - 빌드 시간 향상
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

- name: Build with Gradle
run: ./gradlew build -x test

Expand Down

0 comments on commit edef6a8

Please sign in to comment.