Skip to content

Commit

Permalink
Update github-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seohyun-lee authored Feb 8, 2024
1 parent 7911ce1 commit 0af4921
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI/CD using GitHub Actions
name: Deploy using GitHub Actions

# event trigger
# develop/main 브랜치에 push 혹은 pull_request가 되었을 때 실행
Expand All @@ -10,12 +10,20 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
# 기본 체크아웃
- name: Checkout
uses: actions/checkout@v4

# Gradlew 실행 허용
- name: Run chmod to make gradlew executable
run: |
pwd
chmod +x ./gradlew
# JDK 17 세팅
- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down

0 comments on commit 0af4921

Please sign in to comment.