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 8d2b3b2 commit 6785557Copy full SHA for 6785557
.github/workflows/alpine-netboot-zfs.yml
@@ -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