mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-20 12:29:58 -04:00
Fixing typos, and var names
This commit is contained in:
parent
d69706ad03
commit
96cc821a58
1 changed files with 4 additions and 4 deletions
8
.github/workflows/qmk_userspace_build.yml
vendored
8
.github/workflows/qmk_userspace_build.yml
vendored
|
@ -15,7 +15,7 @@ on:
|
||||||
type: string
|
type: string
|
||||||
qmk_nontree_json:
|
qmk_nontree_json:
|
||||||
description: "json file containing non-tree keyboards"
|
description: "json file containing non-tree keyboards"
|
||||||
default: "$GITHUB_WORKSPACE/qmk_nontree.json"
|
default: "qmk_nontree.json"
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
@ -70,18 +70,18 @@ jobs:
|
||||||
id: check_json_files
|
id: check_json_files
|
||||||
uses: andstor/file-existence-action@v2
|
uses: andstor/file-existence-action@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ inputs.qmk_nontree_json }}
|
files: $GITHUB_WORKSPACE/${{ inputs.qmk_nontree_json }}
|
||||||
|
|
||||||
- name: Read Non-Tree Targets from JSON file
|
- name: Read Non-Tree Targets from JSON file
|
||||||
if: steps.check_json_files.outputs.files_exists == 'true'
|
if: steps.check_json_files.outputs.files_exists == 'true'
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
echo 'COPY_TARGETS<<EOF'
|
echo 'COPY_TARGETS<<EOF'
|
||||||
cat ${{ inputs.qmk_nontree_json }}
|
cat $GITHUB_WORKSPACE/${{ inputs.qmk_nontree_json }}
|
||||||
echo 'EOF'
|
echo 'EOF'
|
||||||
} >> "$GITHUB_ENV"
|
} >> "$GITHUB_ENV"
|
||||||
|
|
||||||
- name: Copy Non-Tree Keyboard Defintions from Userspace to QMK Firmware
|
- name: Copy Non-Tree Keyboard Definitions from Userspace to QMK Firmware
|
||||||
if: steps.check_json_files.outputs.files_exists == 'true'
|
if: steps.check_json_files.outputs.files_exists == 'true'
|
||||||
run: |
|
run: |
|
||||||
for target in ${{ join(fromJson(env.COPY_TARGETS).nontree_targets, ' ') }};
|
for target in ${{ join(fromJson(env.COPY_TARGETS).nontree_targets, ' ') }};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue