Skip to content

Commit 65f9b2c

Browse files
committed
ci: fixed incorrect reference to unsigned release apk
1 parent f38293c commit 65f9b2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ SHELL := /bin/bash
55
# - https://developer.android.com/ndk/guides/android_mk
66

77
RELEASE_TYPE = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release' || echo 'debug')
8+
RELEASE_TYPE_UNSIGNED = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release-unsigned' || echo 'debug')
89
RELEASE_TYPE_CAPS = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'Release' || echo 'Debug')
910
HAS_SECRETS = $(shell test -n "$$JKS_KEYPASS" && echo 'true' || echo 'false')
1011

@@ -85,7 +86,7 @@ else
8586
endif
8687

8788
# Signed release APK
88-
dist/aw-android.apk: $(APKDIR)/$(RELEASE_TYPE)/mobile-$(RELEASE_TYPE).apk
89+
dist/aw-android.apk: $(APKDIR)/$(RELEASE_TYPE)/mobile-$(RELEASE_TYPE_UNSIGNED).apk
8990
mkdir -p dist
9091
@# Only sign if we have key secrets set ($JKS_KEYPASS and $JKS_STOREPASS)
9192
ifneq ($(HAS_SECRETS), true)

0 commit comments

Comments
 (0)