-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1112cdd
commit 9883d8c
Showing
1 changed file
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
- name: Build with Gradle | ||
env: | ||
MONSTER_COMPENDIUM_KEYSTORE_PASSWORD: ${{ secrets.MONSTER_COMPENDIUM_KEYSTORE_PASSWORD }} | ||
run: ./gradlew testReleaseUnitTest jvmTest bundleRelease :app:packageDmg linkReleaseFrameworkIosSimulatorArm64 | ||
run: ./gradlew testReleaseUnitTest jvmTest assembleRelease bundleRelease :app:packageDmg linkReleaseFrameworkIosSimulatorArm64 | ||
|
||
- name: Verify database migration | ||
run: chmod +x ./scripts/sqldelight/verifyDatabaseMigration && ./scripts/sqldelight/verifyDatabaseMigration | ||
|
@@ -64,24 +64,30 @@ jobs: | |
name: MonsterCompendium-dmg | ||
path: app/build/compose/binaries/main/dmg/*.dmg | ||
|
||
- name: Upload an APK | ||
- name: Upload APK | ||
uses: actions/[email protected] | ||
with: | ||
name: app-release-apk | ||
path: app/build/outputs/apk/release/app-release.apk | ||
|
||
- name: Upload AAB | ||
uses: actions/[email protected] | ||
with: | ||
name: app-release-aab | ||
path: app/build/outputs/bundle/release/app-release.aab | ||
|
||
- name: Upload Dev APK | ||
uses: actions/[email protected] | ||
with: | ||
name: app-dev-release-apk | ||
path: app/build/outputs/apk/release/app-dev-release.apk | ||
|
||
- name: Upload an APK metadata JSON | ||
- name: Upload APK metadata JSON | ||
uses: actions/[email protected] | ||
with: | ||
name: app-output-metadata-json | ||
path: app/build/outputs/apk/release/output-metadata.json | ||
|
||
- name: Upload an AAB | ||
uses: actions/[email protected] | ||
with: | ||
name: app-release-aab | ||
path: app/build/outputs/bundle/release/app-release.aab | ||
|
||
ubuntu-desktop-distribution: | ||
name: Ubuntu Desktop Distribution | ||
runs-on: ubuntu-latest | ||
|