We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef05376 commit 794c9bfCopy full SHA for 794c9bf
.github/workflows/publish-packages.yml
@@ -29,7 +29,14 @@ on:
29
- 'from-package'
30
required: true
31
default: 'from-package'
32
-
+ target_branch:
33
+ description: 'Target branch to release from'
34
+ type: choice
35
+ options:
36
+ - 'next'
37
+ - 'master'
38
+ required: true
39
+ default: 'next'
40
jobs:
41
e2e:
42
name: Build and Test
@@ -159,6 +166,8 @@ jobs:
159
166
steps:
160
167
- name: Checkout
161
168
uses: actions/checkout@v4
169
+ with:
170
+ ref: ${{ github.event.inputs.target_branch }}
162
171
163
172
- name: Setup Registry
164
173
uses: actions/setup-node@v4
0 commit comments