We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ef69a commit 550c19eCopy full SHA for 550c19e
1 file changed
.github/actions/homebrew-packages-setup/install.sh
@@ -31,6 +31,12 @@ if [[ "${CACHE_HIT}" == "true" && "${INPUT_DOWNLOADS_HASH_FROM_PREPARE}" != "${i
31
fi
32
33
if [[ "${skipInstalls}" == "false" ]]; then
34
+ if [[ "${INPUT_CACHE_MODE}" == "prepare" ]]; then
35
+ echo "::group::Update brew formulae"
36
+ brew update
37
+ echo "::endgroup::"
38
+ fi
39
+
40
for tool in ${TOOLS_TO_INSTALL}; do
41
echo "::group::Install ${tool}"
42
brew install --quiet "${tool}"
0 commit comments