We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbcfddd commit fbd0796Copy full SHA for fbd0796
.github/workflows/debian.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
paths:
6
- .github/workflows/debian.yml
7
+ - configs
8
- recipes
9
10
concurrency:
@@ -77,9 +78,8 @@ jobs:
77
78
version=$(jq -r '.version' ${config})
79
opts=$(jq -r '.options | join(" -o ") | if length == 0 then "" else "-o " + . end' ${config})
80
# Create the recipe.
- echo "Creating recipe '${name}@${version} with options ${opts}'."
81
- conan create ${dir} \
82
- --name=${name} \
+ echo "Creating recipe '${name}@${version}' with options '${opts}'."
+ conan create ${name}/${dir} \
83
--version=${version} \
84
--build=missing \
85
--settings:all=build_type=${{ matrix.build.type }} \
0 commit comments