From 40e4ac5bb265a16b155268b0bf418531d7b716f5 Mon Sep 17 00:00:00 2001 From: Noah Mason Date: Tue, 4 Jun 2024 18:01:49 -0400 Subject: [PATCH] Fixes missing quotation mark in guthub workflow files. --- .github/workflows/test.yml | 2 +- package/.github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8adbd42..9739f31 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: # Gets the PHP version from composer.json and sets it as an environment variable. - name: Set PHP Version id: set_php_version - run: echo "PHP_VERSION=$(jq -r '.require.php' composer.json) >> $GITHUB_ENV + run: echo "PHP_VERSION=$(jq -r '.require.php' composer.json)" >> $GITHUB_ENV # Gets the Node version from .nvmrc and sets it as an environment variable. - name: Set Node Version diff --git a/package/.github/workflows/release.yml b/package/.github/workflows/release.yml index 7d13c05..5cb0e35 100644 --- a/package/.github/workflows/release.yml +++ b/package/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: # Gets the PHP version from composer.json and sets it as an environment variable. - name: Set PHP Version id: set_php_version - run: echo "PHP_VERSION=$(jq -r '.require.php' composer.json) >> $GITHUB_ENV + run: echo "PHP_VERSION=$(jq -r '.require.php' composer.json)" >> $GITHUB_ENV # Gets the Node version from .nvmrc and sets it as an environment variable. - name: Set Node Version