From 49a0d7b669a581a98e6d19c3ce9f72cd7ae68d57 Mon Sep 17 00:00:00 2001 From: ash <54317630+dongho108@users.noreply.github.com> Date: Sun, 8 Dec 2024 04:00:49 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=B0=B0=ED=8F=AC=EC=8B=9C=20=EB=B8=8C?= =?UTF-8?q?=EB=9E=9C=EC=B9=98=20=EC=9E=85=EB=A0=A5=EB=B0=9B=EC=9D=84=20?= =?UTF-8?q?=EC=88=98=20=EC=9E=88=EB=8F=84=EB=A1=9D=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?(#104)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 김동호 --- .github/workflows/github-action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml index 6bee600..6eb0d77 100644 --- a/.github/workflows/github-action.yml +++ b/.github/workflows/github-action.yml @@ -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 @@ -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