Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeraymonddowning committed Oct 20, 2024
1 parent bd2742b commit 61bef99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ runs:
steps:
- name: Get PHP extension cache hash
id: get-cache-hash
run: echo hash=$(echo $PHP_EXTENSIONS | md5sum | awk '{print $1}') >> $GITHUB_OUTPUT
with:
PHP_EXTENSIONS: ${{ inputs.php-extensions }}
run: echo hash=$(echo "$PHP_EXTENSIONS" | md5sum | awk '{print $1}') >> $GITHUB_OUTPUT
shell: bash

- name: Setup cache environment
Expand Down

0 comments on commit 61bef99

Please sign in to comment.