Skip to content

Commit 6785557

Browse files
Create alpine-netboot-zfs.yml
1 parent 8d2b3b2 commit 6785557

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
workflow_dispatch:
3+
inputs:
4+
debug_enabled:
5+
type: boolean
6+
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
7+
required: false
8+
default: false
9+
jobs:
10+
build-alpine-netboot-zfs:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Enable tmate debugging of manually-triggered workflows if the input option was provided
14+
- name: Setup tmate session
15+
uses: mxschmitt/action-tmate@v3
16+
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}

0 commit comments

Comments
 (0)