Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Dec 11, 2024
1 parent e64f4e7 commit a021b17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ runs:
# `conan remote auth` implicitly uses the environment variables
# CONAN_LOGIN_USERNAME_<REMOTE> and CONAN_PASSWORD_<REMOTE>.
# https://docs.conan.io/2/reference/commands/remote.html
echo outcome=$((conan remote auth ripple | tee /dev/tty | grep -q error) \
echo outcome=$((conan remote auth ripple 2>&1 | tee output | grep -q error) \
&& echo failure || echo success) | tee ${GITHUB_OUTPUT}
cat output
- name: list missing binaries
id: binaries
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ runs:
using: composite
steps:
- name: install Conan
if: runner.os == 'Linux'
if: contains(['Linux', 'Windows'], runner.os)
shell: bash
run: |
pip install --upgrade conan
Expand Down

0 comments on commit a021b17

Please sign in to comment.