Skip to content

Commit

Permalink
Move Installing MacOS Dependencies to 2nd Step in GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
njfdev committed Jul 22, 2024
1 parent 5e505be commit 9972f1c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Dependencies (MacOS Only)
if: matrix.platform == 'macos-latest' || matrix.platform == 'macos-13'
run: |
brew tap pothosware/homebrew-pothos
brew update
brew install librtlsdr soapyrtlsdr soapysdr libao
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand All @@ -54,13 +61,6 @@ jobs:
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev librsvg2-dev patchelf librtlsdr-dev libsoapysdr-dev soapysdr-module-rtlsdr libasound2-dev libudev-dev
- name: Install Dependencies (MacOS Only)
if: matrix.platform == 'macos-latest' || matrix.platform == 'macos-13'
run: |
brew tap pothosware/homebrew-pothos
brew update
brew install librtlsdr soapyrtlsdr soapysdr libao
- name: install frontend dependencies
run: yarn install

Expand Down

0 comments on commit 9972f1c

Please sign in to comment.