We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b213491 commit 0f03b6bCopy full SHA for 0f03b6b
1 file changed
.github/workflows/release-nightly-dev.yml
@@ -12,7 +12,8 @@ on:
12
13
workflow_dispatch:
14
inputs:
15
- branch:
+ branch-to-build:
16
+ # do not use branch as name as it will be master in a scheduled run
17
type: string
18
description: 'Branch to checkout, build and publish'
19
required: false
@@ -31,7 +32,7 @@ jobs:
31
32
- name: Checkout
33
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34
with:
- ref: ${{ github.event.inputs.branch || 'dev'}}
35
+ ref: ${{ github.event.inputs.branch-to-build || 'dev'}}
36
37
- name: Configure git
38
run: |
0 commit comments