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 89bd077 commit cefb817Copy full SHA for cefb817
.github/workflows/build-alpine-netboot-image-zfs.yml
@@ -4,12 +4,19 @@ on:
4
branches:
5
- main
6
workflow_dispatch:
7
+ inputs:
8
+ branch:
9
+ description: "Optional branch name to checkout"
10
+ required: false
11
+ default: "main"
12
13
jobs:
14
build-alpine-zfs-netboot-image:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
18
+ with:
19
+ ref: ${{ github.event.inputs.branch || 'main' }}
20
21
- name: Build alpine image
22
run: |
0 commit comments