Skip to content

Commit 16cf60a

Browse files
author
Alvaro Muñoz
committed
Add double quotes to env var
1 parent 6237a8e commit 16cf60a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ runs:
2929
shell: bash
3030
if: inputs.workflow-models
3131
env:
32-
DATA: ${{ inputs.workflow-models }}
32+
MODELS: ${{ inputs.workflow-models }}
3333
run: |
3434
# Create QLPack directory
3535
mkdir workflow-extpack
3636
cd workflow-extpack
3737
3838
# Store the extension pack file
39-
echo $DATA > models.yml
39+
echo "$MODELS" > models.yml
4040
4141
# Create QLPack
4242
cat > qlpack.yml << 'EOF'

0 commit comments

Comments
 (0)