From 42d8e5b7ef4c3ff86f3b2ebc4584edff1136bf71 Mon Sep 17 00:00:00 2001 From: Bob Aman Date: Thu, 27 Jun 2024 01:10:52 -0500 Subject: [PATCH] Stop using absolute path, see #368 --- .github/workflows/publish-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 663831cf..b95a9a1f 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -54,10 +54,10 @@ jobs: - name: Update Homebrew run: | - /usr/bin/brew update --preinstall + brew update --preinstall - name: Install protobuf compiler - run: /usr/bin/sudo /usr/bin/brew install protobuf + run: sudo brew install protobuf - name: Build release target uses: clechasseur/rs-cargo@5cd564345ef5b1136392a1dc943b33a3a888b873 # v2.0.2 @@ -89,10 +89,10 @@ jobs: - name: Update Homebrew run: | - /usr/bin/brew update --preinstall + brew update --preinstall - name: Install protobuf compiler - run: /usr/bin/sudo /usr/bin/brew install protobuf + run: sudo brew install protobuf - name: Build release target uses: clechasseur/rs-cargo@5cd564345ef5b1136392a1dc943b33a3a888b873 # v2.0.2