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 4120691 commit 197776bCopy full SHA for 197776b
1 file changed
.github/workflows/struct-generate.yaml
@@ -48,6 +48,11 @@ on:
48
type: string
49
required: false
50
default: ''
51
+ structures_folder:
52
+ description: 'Path to the structures folder'
53
+ type: string
54
+ required: false
55
+ default: 'structures'
56
secrets:
57
token:
58
description: 'GitHub token'
@@ -84,10 +89,10 @@ jobs:
84
89
if [ -d ./custom-structures ]; then
85
90
86
91
struct list \
87
- -s ./custom-structures
92
+ -s ./custom-structures/${{ inputs.structures_folder }}
88
93
94
struct generate \
- -s ./custom-structures \
95
+ -s ./custom-structures/${{ inputs.structures_folder }} \
96
${{ inputs.args }} \
97
${{ inputs.struct_file }} \
98
${{ inputs.output_dir }}
0 commit comments