Skip to content

Commit

Permalink
feat: allow user to select branch to release
Browse files Browse the repository at this point in the history
  • Loading branch information
MelchiorKokernoot committed Dec 19, 2024
1 parent 74f1c23 commit 75dd742
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -17,6 +22,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}

- name: Set TAG and VERSION
id: vars
Expand Down

0 comments on commit 75dd742

Please sign in to comment.