Skip to content

Commit

Permalink
Update mmrl-debug.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored Sep 22, 2023
1 parent 08cdf57 commit 86529d1
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/mmrl-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
contents: read
packages: write

strategy:
matrix:
node-version: [ 18 ]

steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -34,6 +38,11 @@ jobs:
java-version: 17
distribution: 'temurin'

- name: Set up Node.js 18
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Setup Android SDK
uses: android-actions/setup-android@v2

Expand All @@ -45,11 +54,16 @@ jobs:
notifications
jdks
${{ github.workspace }}/.gradle/configuration-cache
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Build apk debug
run: ./gradlew app:assembleDefaultDebug
- name: Build Debug APK
run: |
chmod +x ./Android/gradlew
cd ./Website
npm install --force
npm run web:dev
npm run assetfix:android-clean
npm run assetfix:android-build
./Android/gradlew app:assembleDefaultDebug
- name: Upload MMRL-default-arm64-v8a-debug
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 86529d1

Please sign in to comment.