Skip to content

Commit

Permalink
tools: only sign release if promotion successful
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Nov 27, 2018
1 parent bb04a8b commit b0160a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ for version in $versions; do

ssh ${customsshkey} ${webuser}@${webhost} $promotecmd nodejs $version

sign $version
if [ $? -eq 0 ];then
sign $version
fi

break
done
Expand Down

0 comments on commit b0160a7

Please sign in to comment.