From 9c0c800f14232943505c71f4f986b8a330282913 Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Mon, 25 Mar 2024 21:03:32 -0500 Subject: [PATCH] let bash do the expansion --- .github/workflows/custom-board-build/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/custom-board-build/action.yaml b/.github/workflows/custom-board-build/action.yaml index 73fdb47a3a..b88b786e9d 100644 --- a/.github/workflows/custom-board-build/action.yaml +++ b/.github/workflows/custom-board-build/action.yaml @@ -237,8 +237,8 @@ runs: if: ${{ inputs.run_simulator == 'true' && inputs.push == 'true' }} shell: bash run: | - git add "${{inputs.sim_output}}*msq" - git add "${{inputs.sim_output}}canned-tunes/*md" + git add ${{inputs.sim_output}}*msq + git add ${{inputs.sim_output}}canned-tunes/*md OUT=$(git commit -m "Auto-generated Default Tune" 2>&1) || echo "commit failed, finding out why" if echo "$OUT" | grep 'nothing to commit'; then echo "Tune: looks like nothing to commit"