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 af12cba commit e64f4e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ 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 | grep -q error) \
echo outcome=$((conan remote auth ripple | tee /dev/tty | grep -q error) \
&& echo failure || echo success) | tee ${GITHUB_OUTPUT}
- name: list missing binaries
id: binaries
Expand All @@ -47,6 +47,6 @@ runs:
--settings build_type=${{ inputs.configuration }} \
..
- name: upload dependencies to remote
if: (steps.binaries.outputs.missing != '[]') && (steps.remote.outputs.outcome == 'success')
if: false && (steps.binaries.outputs.missing != '[]') && (steps.remote.outputs.outcome == 'success')
shell: bash
run: conan upload --remote ripple --confirm '*'

0 comments on commit e64f4e7

Please sign in to comment.