Merge pull request #7323 from dokku/josegonzalez-patch-1

Correct errors in brew doctor output when making a formula release
This commit is contained in:
Jose Diaz-Gonzalez
2024-11-03 14:23:16 -05:00
committed by GitHub

View File

@@ -136,6 +136,19 @@ jobs:
runs-on: macos-latest
needs: release
steps:
- name: Brew doctor
run: |
brew doctor || true
- name: Brew cleanup
run: |
echo "====> Untapping homebrew/core"
brew untap homebrew/core || true
echo "====> Untapping homebrew/cask"
brew untap homebrew/cask || true
echo "====> Uninstalling openssl@1.1"
brew uninstall openssl@1.1 || true
echo "====> Uninstalling ruby@3.0"
brew uninstall ruby@3.0 || true
- name: Brew doctor
run: brew doctor
- name: Brew config