mirror of
https://github.com/ClaytonWWilson/miryoku_zmk.git
synced 2025-12-13 17:58:47 +00:00
Fix typo in workflows
This commit is contained in:
parent
5959a32390
commit
76dc45e82e
@ -9,7 +9,7 @@ jobs:
|
||||
with:
|
||||
board: '["nice_nano"]'
|
||||
shield: '["corne_left"]'
|
||||
cutom_config: '["#define MIRYOKU_KLUDGE_MOUSEKEYSPR"]'
|
||||
custom_config: '["#define MIRYOKU_KLUDGE_MOUSEKEYSPR"]'
|
||||
kconfig: '["CONFIG_ZMK_MOUSE=y"]'
|
||||
branches: '[
|
||||
"zmkfirmware/zmk/main krikun98/zmk/mouse-pr",
|
||||
|
||||
8
.github/workflows/build-inputs.yml
vendored
8
.github/workflows/build-inputs.yml
vendored
@ -32,7 +32,7 @@ on:
|
||||
description: 'mapping'
|
||||
required: false
|
||||
default: 'default'
|
||||
cutom_config:
|
||||
custom_config:
|
||||
description: 'custom_config'
|
||||
required: false
|
||||
default: 'default'
|
||||
@ -55,7 +55,7 @@ jobs:
|
||||
clipboard: ${{ steps.process-inputs.outputs.clipboard }}
|
||||
layers: ${{ steps.process-inputs.outputs.layers }}
|
||||
mapping: ${{ steps.process-inputs.outputs.mapping }}
|
||||
cutom_config: ${{ steps.process-inputs.outputs.cutom_config }}
|
||||
custom_config: ${{ steps.process-inputs.outputs.custom_config }}
|
||||
kconfig: ${{ steps.process-inputs.outputs.kconfig }}
|
||||
branches: ${{ steps.process-inputs.outputs.branches }}
|
||||
steps:
|
||||
@ -74,7 +74,7 @@ jobs:
|
||||
set-output "clipboard" "${{ github.event.inputs.clipboard }}"
|
||||
set-output "layers" "${{ github.event.inputs.layers }}"
|
||||
set-output "mapping" "${{ github.event.inputs.mapping }}"
|
||||
set-output "cutom_config" "${{ github.event.inputs.cutom_config }}"
|
||||
set-output "custom_config" "${{ github.event.inputs.custom_config }}"
|
||||
set-output "kconfig" "${{ github.event.inputs.kconfig }}"
|
||||
set-output "branches" "${{ github.event.inputs.branches }}"
|
||||
build:
|
||||
@ -88,6 +88,6 @@ jobs:
|
||||
clipboard: ${{ needs.process-inputs.outputs.clipboard }}
|
||||
layers: ${{ needs.process-inputs.outputs.layers }}
|
||||
mapping: ${{ needs.process-inputs.outputs.mapping }}
|
||||
cutom_config: ${{ needs.process-inputs.outputs.cutom_config }}
|
||||
custom_config: ${{ needs.process-inputs.outputs.custom_config }}
|
||||
kconfig: ${{ needs.process-inputs.outputs.kconfig }}
|
||||
branches: ${{ needs.process-inputs.outputs.branches }}
|
||||
|
||||
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
@ -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 }}"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user