diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-12 17:00:14 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-12 17:00:14 -0400 |
commit | c4082bd31e44b09d4758a502720082da8a7c79cc (patch) | |
tree | b16c782524dfcfe75dc67ac83905efa668b8132a | |
parent | 5defe0a771002e598328248cbbf1b85dd3d0f369 (diff) |
Try to fix some quoting.
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d36b0da..11b9f39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest' id: west-init with: - args: "init -l app" + args: 'init "-l app"' - name: West Update uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest' id: west-update @@ -40,7 +40,7 @@ jobs: uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest' id: west-config with: - args: 'config --global zephyr.base-prefer configfile' + args: 'config "--global zephyr.base-prefer configfile"' - name: West Zephyr Export uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest' id: west-zephyr-export @@ -50,4 +50,4 @@ jobs: uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest' id: west-build with: - args: 'build -s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire' + args: 'build "-s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire"' |