From c3f8c12d640dcb26fa0eb9b7ce8c49d9a399248d Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Wed, 14 Feb 2024 17:18:01 -0800 Subject: [PATCH] Add quotes. --- .github/workflows/android.yml | 4 +--- .github/workflows/integration_tests.yml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 43f8de427e..2b4520e51d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -54,12 +54,10 @@ jobs: - name: setup Xcode version (macos) if: runner.os == 'macOS' run: sudo xcode-select -s /Applications/Xcode_${{ env.xcodeVersion }}.app/Contents/Developer - - name: Force Java 8 (macOS) if: startsWith(matrix.os, 'macos') shell: bash - run: echo JAVA_HOME=${JAVA_HOME_8_X64} >> $GITHUB_ENV - + run: echo "JAVA_HOME=${JAVA_HOME_8_X64}" >> $GITHUB_ENV - name: Store git credentials for all git commands # Forces all git commands to use authenticated https, to prevent throttling. shell: bash diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 40641f9aa9..282132a812 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -423,7 +423,7 @@ jobs: - name: Force Java 8 (macOS) if: startsWith(matrix.os, 'macos') shell: bash - run: echo JAVA_HOME=${JAVA_HOME_8_X64} >> $GITHUB_ENV + run: echo "JAVA_HOME=${JAVA_HOME_8_X64}" >> $GITHUB_ENV - name: Add msbuild to PATH (Windows) if: startsWith(matrix.os, 'windows') uses: microsoft/setup-msbuild@v1.1