Fix typo in workflows

This commit is contained in:
Andre Sachs
2022-05-27 15:36:55 +01:00
committed by Manna Harbour
parent 5959a32390
commit 76dc45e82e
3 changed files with 10 additions and 10 deletions

View File

@@ -26,7 +26,7 @@ on:
mapping:
type: string
default: '["default"]'
cutom_config:
custom_config:
type: string
default: '["default"]'
kconfig:
@@ -51,7 +51,7 @@ jobs:
clipboard: ${{ fromJSON(inputs.clipboard) }}
layers: ${{ fromJSON(inputs.layers) }}
mapping: ${{ fromJSON(inputs.mapping) }}
cutom_config: ${{ fromJSON(inputs.cutom_config) }}
custom_config: ${{ fromJSON(inputs.custom_config) }}
kconfig: ${{ fromJSON(inputs.kconfig) }}
branches: ${{ fromJSON(inputs.branches) }}
steps:
@@ -88,10 +88,10 @@ jobs:
artifact_build_name="miryoku_zmk $shield ${{ matrix.board }}"
if [ -n "${{ matrix.cutom_config }}" -a "${{ matrix.cutom_config }}" != 'default' ]
if [ -n "${{ matrix.custom_config }}" -a "${{ matrix.custom_config }}" != 'default' ]
then
echo "${{ matrix.cutom_config }}" >> "$configfile"
artifact_build_name="$artifact_build_name config_"`echo "${{ matrix.cutom_config }}" | md5sum | cut -d ' ' -f 1`
echo "${{ matrix.custom_config }}" >> "$configfile"
artifact_build_name="$artifact_build_name config_"`echo "${{ matrix.custom_config }}" | md5sum | cut -d ' ' -f 1`
fi
for option in "alphas_${{ matrix.alphas }}" "nav_${{ matrix.nav }}" "clipboard_${{ matrix.clipboard }}" "layers_${{ matrix.layers }}" "mapping_${{ matrix.mapping }}"