Update Main.yml #47
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
name: Multiplatform Main | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'media/**' | |
jobs: | |
multiplatform-build: | |
name: Multiplatform Build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Verify database migration | |
run: chmod +x ./scripts/sqldelight/verifyDatabaseMigration && ./scripts/sqldelight/verifyDatabaseMigration | |
- name: Build with Gradle | |
env: | |
MONSTER_COMPENDIUM_KEYSTORE_PASSWORD: ${{ secrets.MONSTER_COMPENDIUM_KEYSTORE_PASSWORD }} | |
run: ./gradlew jvmTest testReleaseUnitTest bundleRelease :app:packageDmg | |
- name: Generate Dev Apk | |
env: | |
MONSTER_COMPENDIUM_KEYSTORE_PASSWORD: ${{ secrets.MONSTER_COMPENDIUM_KEYSTORE_PASSWORD }} | |
run: ./gradlew assembleRelease -Pdev | |
- name: Upload the test report | |
if: failure() | |
uses: actions/[email protected] | |
with: | |
name: TestReport | |
path: | | |
feature-monster-compendium/build/reports/tests | |
data/build/reports/tests | |
domain/build/reports/tests | |
- name: Upload Dmg | |
uses: actions/[email protected] | |
with: | |
name: MonsterCompendium-dmg | |
path: app/build/compose/binaries/main/dmg/*.dmg | |
- 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 APK metadata JSON | |
uses: actions/[email protected] | |
with: | |
name: app-output-metadata-json | |
path: app/build/outputs/apk/release/output-metadata.json | |
ubuntu-desktop-distribution: | |
name: Ubuntu Desktop Distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew :app:packageDeb | |
- name: Upload Deb | |
uses: actions/[email protected] | |
with: | |
name: MonsterCompendium-deb | |
path: app/build/compose/binaries/main/deb/*.deb | |
windows-desktop-distribution: | |
name: Windows Desktop Distribution | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew :app:packageMsi | |
- name: Upload Msi | |
uses: actions/[email protected] | |
with: | |
name: MonsterCompendium-msi | |
path: app/build/compose/binaries/main/msi/*.msi |