Skip to content

Commit

Permalink
feat: 배포시 브랜치 입력받을 수 있도록 변경 (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: 김동호 <[email protected]>
  • Loading branch information
dongho108 and kurly-dongho authored Dec 7, 2024
1 parent 5bab6e7 commit 49a0d7b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/github-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ name: Java CI with Gradle
on:
workflow_dispatch:
inputs:
branch:
description: '배포할 브랜치를 입력합니다. (예: release/1.0.0)'
required: true
default: 'release/1.0.0'
tag:
description: '배포내용을 입력합니다.'
required: true
Expand All @@ -24,6 +28,8 @@ jobs:

- name: checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.branch }}

- name: Set up JDK 11
uses: actions/setup-java@v3
Expand Down

0 comments on commit 49a0d7b

Please sign in to comment.