Skip to content

Commit

Permalink
Sign CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
neilalexander committed Oct 29, 2022
1 parent a0e0109 commit 2457362
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,13 @@ jobs:

- name: Gradle build
run: |
echo "${{ secrets.RELEASE_KEYSTORE }}" > app/gha.keystore.asc
gpg -d --passphrase "${{ secrets.RELEASE_KEYSTORE_PASSWORD }}" --batch app/gha.keystore.asc > app/gha.jks
chmod +x gradlew
./gradlew assemble
./gradlew assembleYggdrasil
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: yggdrasil-android
path: app/build/outputs/apk/release/app-release-unsigned.apk
path: app/build/outputs/apk/yggdrasil/app-yggdrasil.apk
18 changes: 17 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,27 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
create("yggdrasil") {
// You need to specify either an absolute path or include the
// keystore file in the same directory as the build.gradle file.
storeFile = file("gha.jks")
storePassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
keyAlias = "yggdrasil-android"
keyPassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
yggdrasil {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.getByName("yggdrasil")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand All @@ -42,4 +58,4 @@ dependencies {
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cp /tmp/yggdrasil-go/yggdrasil.aar /tmp/yggdrasil-android/app/libs/

```
cd /tmp/yggdrasil-android
./gradew assemble
./gradew assembleRelease
```

note: you will need to use jdk-11 as jdk-16 `"doesn't work" ™`
Expand Down

0 comments on commit 2457362

Please sign in to comment.