Skip to content

Commit 9e9adeb

Browse files
committed
Corrected incorrect variable names
1 parent 8512ff0 commit 9e9adeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ jobs:
115115
if [[ "$IS_DEBUG" == "true" ]]; then
116116
echo "--- DEBUG MODE ---"
117117
SHA=$(echo ${{ github.event.pull_request.head.sha }} | head -c 8)
118-
apk_name=betaflight-app-$(VERSION)-$(SHA).apk
118+
apk_name=betaflight-app-$VERSION-$SHA.apk
119119
else
120120
echo "--- RELEASE MODE ---"
121-
apk_name=betaflight-app-$(VERSION).apk
121+
apk_name=betaflight-app-$VERSION.apk
122122
fi
123123
cp android/app/build/outputs/apk/release/app-release.apk artifacts/$apk_name
124124
echo "apk_name=$apk_name" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)