mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-13 05:58:31 -06:00
Adds an Instant Mix Button and Screen - users can view an instant mix from the album page by tapping on the Compass icon (which is styled for Dark and Light mode, respectfully) Fixes Android playback controls not showing up - this is a regression introduced by React Native's New Architecture and is being rolled back. A future update will fix this and get Android builds back on the New Architecture Adds Tamagui styling to toasts so that they are more homogenous with the rest of the UI
24 lines
590 B
YAML
24 lines
590 B
YAML
name: Build Android APK
|
|
on:
|
|
pull_request:
|
|
jobs:
|
|
build-android:
|
|
runs-on: macos-15
|
|
steps:
|
|
- name: 🛒 Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 🖥 Setup Node 20
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: 💬 Echo package.json version to Github ENV
|
|
run: echo VERSION_NUMBER=$(node -p -e "require('./package.json').version") >> $GITHUB_ENV
|
|
|
|
- name: 🤖 Run yarn init-android
|
|
run: yarn init-android
|
|
|
|
- name: 🚀 Run fastlane build
|
|
run: yarn fastlane:android:build
|