From 4f7f8614416108a67d37fd67398056cd94132a7c Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Sun, 31 Mar 2024 10:22:10 -0400 Subject: [PATCH] convert from json --- .github/workflows/build_iso.yml | 2 +- .github/workflows/test_deployment.yml | 2 +- .github/workflows/test_iso.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_iso.yml b/.github/workflows/build_iso.yml index a463c97..ea106b2 100644 --- a/.github/workflows/build_iso.yml +++ b/.github/workflows/build_iso.yml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - version: ${{ needs.load_vars.outputs.BUILD_VERSIONS }} + version: ${{ fromJson(needs.load_vars.outputs.BUILD_VERSIONS) }} steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test_deployment.yml b/.github/workflows/test_deployment.yml index 284694b..f057a88 100644 --- a/.github/workflows/test_deployment.yml +++ b/.github/workflows/test_deployment.yml @@ -27,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - version: ${{ needs.load_vars.outputs.BUILD_VERSIONS }} + version: ${{ fromJson(needs.load_vars.outputs.BUILD_VERSIONS) }} steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test_iso.yml b/.github/workflows/test_iso.yml index 81d0fdc..12cd326 100644 --- a/.github/workflows/test_iso.yml +++ b/.github/workflows/test_iso.yml @@ -27,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - version: ${{ needs.load_vars.outputs.BUILD_VERSIONS }} + version: ${{ fromJson(needs.load_vars.outputs.BUILD_VERSIONS) }} steps: - name: Checkout uses: actions/checkout@v4