Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,20 @@ jobs:
distribution: 'temurin'
java-version: '17'

# The "Free disk space" step above removes $AGENT_TOOLSDIRECTORY, which
# also wipes the Node 24 install from the earlier setup-node step. Without
# this re-setup, npm ci falls back to the runner's system Node 22 and the
# mobile workspace's "engines" check fails with EBADENGINE.
- name: Setup Node.js (after disk cleanup)
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Upgrade npm to 11.10.0 (after disk cleanup)
run: npm install -g npm@11.10.0

- name: Create concatenated patch file
id: patch-file
run: |
Expand Down Expand Up @@ -1051,6 +1065,20 @@ jobs:
distribution: 'temurin'
java-version: '17'

# The "Free disk space" step above removes $AGENT_TOOLSDIRECTORY, which
# also wipes the Node 24 install from the earlier setup-node step. Without
# this re-setup, npm ci falls back to the runner's system Node 22 and the
# mobile workspace's "engines" check fails with EBADENGINE.
- name: Setup Node.js (after disk cleanup)
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Upgrade npm to 11.10.0 (after disk cleanup)
run: npm install -g npm@11.10.0

- name: Create concatenated patch file
id: patch-file
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ android {
// versionCode is automatically incremented in CI
versionCode 1
// Make sure this is above the currently released Android version in the play store if your changes touch native code:
versionName "1.1.529"
versionName "1.1.530"
resValue "string", "build_config_package", "co.audius.app"
resConfigs "en"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/ios/AudiusReactNative/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.193</string>
<string>1.1.194</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@audius/mobile",
"version": "1.5.180",
"version": "1.5.181",
"private": true,
"scripts": {
"android:dev": "ENVFILE=.env.dev turbo run android -- --mode=prodDebug",
Expand Down
Loading