From bc7f92f2917ed7b3d28ffbffe6226f42da730f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=99=ED=98=B8?= Date: Sun, 8 Dec 2024 03:56:19 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=B8=8C=EB=9E=9C=EC=B9=98=20=EC=9E=85?= =?UTF-8?q?=EB=A0=A5=EB=B0=9B=EC=9D=84=20=EC=88=98=20=EC=9E=88=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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