From d6a2f0e25bd5f083bd2f55a20220603c3f992947 Mon Sep 17 00:00:00 2001 From: Ioannis Karasavvaidis Date: Tue, 24 Sep 2024 14:41:10 +0100 Subject: [PATCH] fix(workflow): correct parameter syntax for Bolt plan execution - Updated the syntax for passing parameters to the Bolt plan from `@params.json` to `--params @params.json`. --- .github/workflows/test-convert-to-legacy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-convert-to-legacy.yaml b/.github/workflows/test-convert-to-legacy.yaml index 0037812c..572909aa 100644 --- a/.github/workflows/test-convert-to-legacy.yaml +++ b/.github/workflows/test-convert-to-legacy.yaml @@ -236,7 +236,7 @@ jobs: bundle exec bolt plan run peadm::install \ --inventoryfile spec/fixtures/litmus_inventory.yaml \ --modulepath spec/fixtures/modules \ - @params.json + --params @params.json echo ::endgroup:: - name: Wait as long as the file ${HOME}/pause file is present if: ${{ always() && github.event.inputs.ssh-debugging == 'true' }}