Skip to content

Commit 471c9fc

Browse files
committed
Add GitHub action features_parse
Signed-off-by: Tobias Wolf <[email protected]>
1 parent f13917d commit 471c9fc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: features_parse
2+
description: Parses the given GardenLinux features parameters
3+
inputs:
4+
flags:
5+
description: 'Flags passed to `gl-features-parse`'
6+
required: true
7+
outputs:
8+
result:
9+
description: 'features result'
10+
value: ${{ steps.result.outputs.result }}
11+
runs:
12+
using: composite
13+
steps:
14+
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@feature/gardenlinux-restructure
15+
- id: result
16+
shell: bash
17+
run: |
18+
echo "result=$(gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT

0 commit comments

Comments
 (0)