Skip to content

Commit 6025cd0

Browse files
committed
adding a check
1 parent 3188abb commit 6025cd0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ jobs:
5353
fi
5454
mvn -B release:prepare $MVN_ARGS
5555
56+
- name: Check release.properties
57+
run: |
58+
if [ ! -f release.properties ]; then
59+
echo "release.properties not found"
60+
exit 1
61+
fi
62+
echo "Contents of release.properties:"
63+
cat release.properties
64+
5665
- name: Determine release version
5766
id: version
5867
run: |

0 commit comments

Comments
 (0)