Skip to content

Commit 8613416

Browse files
committed
relative path to actions
1 parent a3437c1 commit 8613416

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
name: features_parse
22
description: Parses the given GardenLinux features parameters
3+
34
inputs:
45
flags:
56
description: "Flags passed to `gl-features-parse`"
67
required: true
8+
79
outputs:
810
result:
911
description: "features result"
1012
value: ${{ steps.result.outputs.result }}
13+
1114
runs:
1215
using: composite
1316
steps:
14-
- uses: .github/actions/setup
17+
- uses: ./.github/actions/setup
1518
- id: result
1619
shell: bash
1720
run: |
18-
echo "result=$(gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT
21+
echo "result=$(poetry run gl-features-parse ${{ inputs.flags }})" | tee -a $GITHUB_OUTPUT

.github/actions/flavors_parse/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: flavors_parse
22
description: Parses the given GardenLinux flavors parameters
3+
34
inputs:
45
flags:
56
description: "Flags passed to `gl-flavors-parse`"
@@ -9,16 +10,19 @@ inputs:
910
version:
1011
description: GardenLinux Python library version
1112
default: "0.10.0"
13+
1214
outputs:
1315
matrix:
1416
description: "Flavors matrix"
1517
value: ${{ steps.matrix.outputs.matrix }}
18+
1619
runs:
1720
using: composite
1821
steps:
19-
- uses: .github/actions/setup
22+
- uses: ./.github/actions/setup
2023
with:
2124
version: ${{ inputs.version }}
25+
2226
- id: matrix
2327
shell: bash
2428
run: |

0 commit comments

Comments
 (0)