Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
deepu105 authored Oct 6, 2023
1 parent b278f76 commit ead25d5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ jobs:

steps:
- uses: actions/checkout@v1

- name: Install tools
- name: Install tools Linux
if: matrix.runs-on == 'ubuntu-latest'
shell: bash
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
/home/linuxbrew/.linuxbrew/bin/brew install --build-bottle --verbose Formula/kdash.rb && kdash -h
- name: Install tools Mac
if: matrix.runs-on == 'macOS-latest'
shell: bash
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install --build-bottle --verbose Formula/kdash.rb && kdash -h
/home/homebrew/.homebrew/bin/brew install --build-bottle --verbose Formula/kdash.rb && kdash -h

0 comments on commit ead25d5

Please sign in to comment.