Skip to content

Commit 16e34c0

Browse files
committed
Another fix for the release script
1 parent 9ac2d39 commit 16e34c0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,10 @@ jobs:
108108
ls -l
109109
for i in *.gem; do
110110
if [ -f "$i" ]; then
111+
set +e
111112
gem push "$i" >push.out
112113
gemerr=$?
114+
set -e
113115
if [ "$gemerr" -ne 0 ]; then
114116
sed 's/^/::error:: /' push.out
115117
if ! grep -q "Repushing of gem" push.out; then

0 commit comments

Comments
 (0)