From 3a0744a6bb45d01c1dc21258c1dad5d9d86833ff Mon Sep 17 00:00:00 2001 From: Diego Pascual Date: Thu, 5 Sep 2024 11:51:32 +0200 Subject: [PATCH] ci: allow to select the branch to release from (#1610) --- .github/workflows/release-alpha.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-alpha.yml b/.github/workflows/release-alpha.yml index 5eb6681145..a53d48e174 100644 --- a/.github/workflows/release-alpha.yml +++ b/.github/workflows/release-alpha.yml @@ -1,5 +1,11 @@ name: Release alpha version on demand -on: [workflow_dispatch] +on: + workflow_dispatch: + inputs: + branch: + description: 'Branch to release from' + required: true + default: 'main' jobs: release-alpha: runs-on: ubuntu-latest