Skip to content

Commit

Permalink
[chore] ci/cd 구축
Browse files Browse the repository at this point in the history
  • Loading branch information
syyling committed Feb 15, 2024
1 parent e8043c1 commit 933592a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Empty file removed .github/ci.yml
Empty file.
32 changes: 32 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/Setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant Execute Permission For Gradlew
run: chmod +x gradlew

- name: Build With Gradle
run: ./gradlew build
File renamed without changes.

0 comments on commit 933592a

Please sign in to comment.