Skip to content

Commit e4bcddf

Browse files
committed
fix: correct path for versions.properties in Pre-release build configuration
1 parent d5b849c commit e4bcddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/Pre-release build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ jobs:
6464
6565
# Update versions.properties if components exist
6666
if [ ! -z "$MINOR" ]; then
67-
sed -i "s/version_minor = .*/version_minor = $MINOR/" versions.properties
67+
sed -i "s/version_minor = .*/version_minor = $MINOR/" app/versions.properties
6868
fi
6969
7070
if [ ! -z "$PATCH" ]; then
71-
sed -i "s/version_patch = .*/version_patch = $PATCH/" versions.properties
71+
sed -i "s/version_patch = .*/version_patch = $PATCH/" app/versions.properties
7272
fi
7373
7474
# Display updated file

0 commit comments

Comments
 (0)