Skip to content

Commit 37d0d7e

Browse files
committed
use tap for every other actions
1 parent 37af9da commit 37d0d7e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/brew.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@ jobs:
4141
4242
- name: Build and install
4343
run: |
44-
brew install --build-from-source ./Formula/ssh-studio.rb
44+
brew install --build-from-source local/ssh-studio/ssh-studio
4545
4646
- name: Test formula
4747
run: |
4848
ssh-studio
49-
brew test ssh-studio
49+
brew test local/ssh-studio/ssh-studio
5050
5151
- name: Test app bundle
5252
run: |
5353
# Test the .app bundle was created
54-
ls -la "$(brew --prefix ssh-studio)/Applications/SSH Studio.app"
54+
ls -la "$(brew --prefix local/ssh-studio/ssh-studio)/Applications/SSH Studio.app"
5555
# Test the launcher script
56-
"$(brew --prefix ssh-studio)/Applications/SSH Studio.app/Contents/MacOS/ssh-studio" --help
56+
"$(brew --prefix local/ssh-studio/ssh-studio)/Applications/SSH Studio.app/Contents/MacOS/ssh-studio" --help
5757
5858
- name: Create bottle (optional)
5959
run: |
60-
brew uninstall --force ssh-studio || true
61-
brew install --build-bottle ./Formula/ssh-studio.rb
62-
brew bottle --json ssh-studio
60+
brew uninstall --force local/ssh-studio/ssh-studio || true
61+
brew install --build-bottle local/ssh-studio/ssh-studio
62+
brew bottle --json local/ssh-studio/ssh-studio
6363
continue-on-error: true

0 commit comments

Comments
 (0)