Skip to content

Commit

Permalink
Fixes missing quotation mark in guthub workflow files.
Browse files Browse the repository at this point in the history
  • Loading branch information
theenoahmason committed Jun 4, 2024
1 parent b54f010 commit 40e4ac5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 40e4ac5

Please sign in to comment.