We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 868bddd commit 5e635afCopy full SHA for 5e635af
.github/actions/add_conan_provider/action.yml
@@ -1,11 +1,14 @@
1
name: 'get conan dependency provider'
2
description: "installs conan_provider.cmake"
3
+inputs:
4
+ commit-hash:
5
+ description: "commit hash of the commit to pull the conan_provider.cmake file from"
6
+ default: "b0e4d1ec08edb35ef31033938567d621f6643c17"
7
+ required: false
8
runs:
9
using: "composite"
10
steps:
11
- name: Get dependency provider
12
shell: bash
13
run: |
- sudo apt-get install -y wget
-
- wget https://github.com/conan-io/cmake-conan/raw/develop2/conan_provider.cmake -O conan_provider.cmake
14
+ curl -L https://raw.githubusercontent.com/conan-io/cmake-conan/${{ inputs.commit-hash }}/conan_provider.cmake -o conan_provider.cmake
0 commit comments