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 70c8312 commit 874b055Copy full SHA for 874b055
.github/workflows/add-formula.yml
@@ -26,9 +26,11 @@ jobs:
26
echo "CBMC_LATEST=${CBMC_LATEST}" >> "${GITHUB_ENV}"
27
# check whether we already have the formula
28
if [ -e "Formula/cbmc@${CBMC_LATEST}.rb" ] ; then
29
+ echo "Formula already exists"
30
echo "next_step=none" >> "${GITHUB_ENV}"
31
# check whether we already have a PR for the formula
- elif ! git ls-remote --exit-code origin "cbmc-${CBMC_LATEST}" ; then
32
+ elif git ls-remote --exit-code origin "cbmc-${CBMC_LATEST}" ; then
33
+ echo "Branch cbmc-${CBMC_LATEST} already exists"
34
35
else
36
CBMC_LATEST_REV=$(gh -R diffblue/cbmc release view cbmc-"${CBMC_LATEST}" --json targetCommitish | jq -r '.targetCommitish')
0 commit comments