From 75dd74213a1223494efff4f4001024165f97ddc8 Mon Sep 17 00:00:00 2001 From: MelchiorKokernoot Date: Thu, 19 Dec 2024 14:30:14 +0100 Subject: [PATCH] feat: allow user to select branch to release --- .github/workflows/release-debian.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release-debian.yml b/.github/workflows/release-debian.yml index edbca7aec..ef48cffb5 100644 --- a/.github/workflows/release-debian.yml +++ b/.github/workflows/release-debian.yml @@ -3,6 +3,11 @@ name: Release on: workflow_dispatch: inputs: + branch: + description: "Branch name" + required: true + default: "main" + type: string bundle: description: "Bundle ID (next, self)" required: true @@ -17,6 +22,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: ${{ inputs.branch }} - name: Set TAG and VERSION id: vars