Skip to content

Commit

Permalink
🍻 Remove quotes around boolean keys
Browse files Browse the repository at this point in the history
See if this fixes the error `While parsing a block mapping, did not find expected key`
  • Loading branch information
weiji14 committed Sep 22, 2023
1 parent 66c163f commit 18f7b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ runs:
rm --force conda-lock.yml
conda-lock lock $MAMBA --file ${{ inputs.file }} --kind ${{ inputs.kind }} --platform ${{ inputs.platform }}
env:
MAMBA: "${{ fromJSON('{"false": "--no-mamba", "true": "--mamba"}')[inputs.mamba] }}"
MAMBA: "${{ fromJSON('{false: "--no-mamba", true: "--mamba"}')[inputs.mamba] }}"
shell: bash -l {0}

# Print contents of lockfile
Expand Down

0 comments on commit 18f7b39

Please sign in to comment.