Updated build again, again.

This commit is contained in:
Benjamin Halko 2024-01-23 12:13:01 -08:00
parent d047ae97ee
commit 0f3ae5ff31
No known key found for this signature in database
GPG Key ID: 790C70040EB331A0
2 changed files with 2 additions and 3 deletions

View File

@ -31,7 +31,7 @@ jobs:
- name: Get commit hash - name: Get commit hash
id: get_commit_hash id: get_commit_hash
run: echo "::set-output name=hash::$(git rev-parse --short HEAD)" run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload build - name: Upload build
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View File

@ -32,8 +32,7 @@ android {
} }
release { release {
val hasReleaseConfig = (System.getenv("KEYSTORE_FILE") != null) if (System.getenv("KEYSTORE_FILE") != null) {
if (hasReleaseConfig) {
signingConfigs { signingConfigs {
create("release") { create("release") {
storeFile = file(System.getenv("KEYSTORE_FILE")) storeFile = file(System.getenv("KEYSTORE_FILE"))