From 3dbfa670365ecb82eb4d3f9316469869149881a1 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 18 Jan 2025 01:31:27 -0500 Subject: OK --- .github/actions/stasis_install/action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/stasis_install/action.yml b/.github/actions/stasis_install/action.yml index 0fe88f2..3568bca 100644 --- a/.github/actions/stasis_install/action.yml +++ b/.github/actions/stasis_install/action.yml @@ -39,12 +39,20 @@ runs: repository: 'spacetelescope/stasis' path: ${{ github.workspace }}/stasis - - name: Install STASIS dependencies + - if: os.runner == "Linux" }} + name: Install STASIS dependencies run: | sudo apt-get update sudo apt-get install -y ca-certificates cmake libcurl4-openssl-dev libxml2-dev rsync shell: bash + - if: os.runner == "macOS" + name: Install STASIS dependencies + run: | + brew update + brew install curl cmake libxml2 rsync + shell: bash + - name: Install STASIS id: install-stasis run: | -- cgit