Skip to content

Commit 5e6db64

Browse files
authored
Add Homebrew installation steps for macOS and Linux (#66)
Co-authored-by: Ľubomír Kurčák <[email protected]>
1 parent e36bd62 commit 5e6db64

File tree

1 file changed

+35
-5
lines changed

1 file changed

+35
-5
lines changed

.github/workflows/install.yml

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,44 @@ jobs:
4949
run: |
5050
tend --version
5151
52+
homebrew-macos:
53+
runs-on: macos-latest
54+
steps:
55+
- name: Install
56+
run: |
57+
brew install lkurcak/tap/tend
58+
59+
- name: List installed packages
60+
run: |
61+
brew list
62+
63+
- name: Run
64+
run: |
65+
tend --version
66+
67+
homebrew-linux:
68+
runs-on: ubuntu-latest
69+
steps:
70+
- name: Install Homebrew
71+
run: |
72+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
73+
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH
74+
75+
- name: Install
76+
run: |
77+
brew install lkurcak/tap/tend
78+
79+
- name: List installed packages
80+
run: |
81+
brew list
82+
83+
- name: Run
84+
run: |
85+
tend --version
86+
5287
winget:
5388
runs-on: windows-latest
5489
steps:
55-
- name: Install winget
56-
uses: Cyberboss/install-winget@v1
57-
with:
58-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59-
6090
- name: Install
6191
run: |
6292
winget install lkurcak.tend --disable-interactivity --accept-source-agreements

0 commit comments

Comments
 (0)