We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4bee484 + 437d0c8 commit 2dde6e6Copy full SHA for 2dde6e6
1 file changed
.github/deploy
@@ -53,7 +53,8 @@ git checkout gh-pages
53
git add .
54
if git commit \
55
--amend \
56
- --message="Documentation v${CNL_VERSION}-${CNL_CHANNEL}"
+ --message="Documentation v${CNL_VERSION}-${CNL_CHANNEL}" \
57
+ --reset-author
58
then
59
git push --force
60
fi
@@ -64,5 +65,8 @@ popd
64
65
conan remote add johnmcfarlane/cnl https://api.bintray.com/conan/johnmcfarlane/cnl
66
conan user -p "${CONAN_PASS}" -r johnmcfarlane/cnl "${CONAN_USER}"
67
conan install --build=missing "${PROJECT_DIR}"
-conan create "${PROJECT_DIR}" "cnl/${CNL_VERSION}@johnmcfarlane/${CNL_CHANNEL}"
68
+conan create \
69
+ --ignore-dirty \
70
+ "${PROJECT_DIR}" \
71
+ "cnl/${CNL_VERSION}@johnmcfarlane/${CNL_CHANNEL}"
72
conan upload "cnl/${CNL_VERSION}@johnmcfarlane/${CNL_CHANNEL}" -r johnmcfarlane/cnl
0 commit comments