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