From 6a01b4746faeb6198a944f1854da770ca98f2fd8 Mon Sep 17 00:00:00 2001 From: HeCodes2Much Date: Tue, 9 Jul 2024 13:15:40 +0100 Subject: [PATCH] Forgot the releaseDir for building via workflows for the Nightly builds Signed-off-by: HeCodes2Much --- .github/workflows/nightly-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml index eeff606..950bfa6 100644 --- a/.github/workflows/nightly-release.yml +++ b/.github/workflows/nightly-release.yml @@ -75,7 +75,7 @@ jobs: # ID used to access action output id: sign_app_withInternet with: - releaseDir: app/build/outputs/apk/withInternet/release + releaseDir: app/build/outputs/apk/withInternetNightly/release signingKey: ${{ secrets.SIGNINGKEY_BASE64 }} keyAlias: ${{ secrets.KEY_ALIAS }} keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} @@ -100,7 +100,7 @@ jobs: # ID used to access action output id: sign_app_withoutInternet with: - releaseDir: app/build/outputs/apk/withoutInternet/release + releaseDir: app/build/outputs/apk/withoutInternetNightly/release signingKey: ${{ secrets.SIGNINGKEY_BASE64 }} keyAlias: ${{ secrets.KEY_ALIAS }} keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}