From a9537a724b71e76e19297eb77f35ac8e2030b017 Mon Sep 17 00:00:00 2001 From: jakedoublev Date: Fri, 6 Sep 2024 09:07:31 -0700 Subject: [PATCH] fix yaml? --- .github/workflows/end-to-end.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/end-to-end.yaml b/.github/workflows/end-to-end.yaml index b27259cf..075c64ab 100644 --- a/.github/workflows/end-to-end.yaml +++ b/.github/workflows/end-to-end.yaml @@ -39,10 +39,10 @@ jobs: BATS_LIB_PATH: /usr/lib # Terminal width for testing printed output TEST_TERMINAL_WIDTH: 200 - PLATFORM_IS_RUNNING: '${{ inputs.platform-is-running }}' + PLATFORM_IS_RUNNING: ${{ inputs.platform-is-running }} # Ternaries to handle empty inputs (a PR within otdfctl), or remote call scenario - PLATFORM_REF: '${{ inputs.platform-ref == '' && 'main' || inputs.platform-ref }}' - OTDFCTL_REF: '${{ inputs.otdfctl-ref == '' && github.event.pull_request.head.sha || inputs.otdfctl-ref }}' + PLATFORM_REF: ${{ inputs.platform-ref == '' && 'main' || inputs.platform-ref }} + OTDFCTL_REF: ${{ inputs.otdfctl-ref == '' && github.event.pull_request.head.sha || inputs.otdfctl-ref }} steps: - name: Check out otdfctl CLI uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11