diff --git a/.github/workflows/mobile.yml b/.github/workflows/mobile.yml index c05fc0e833f..8fa9dfdf0f6 100644 --- a/.github/workflows/mobile.yml +++ b/.github/workflows/mobile.yml @@ -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: | @@ -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: | diff --git a/packages/mobile/android/app/build.gradle b/packages/mobile/android/app/build.gradle index e123f74da6b..b34bb0a6865 100755 --- a/packages/mobile/android/app/build.gradle +++ b/packages/mobile/android/app/build.gradle @@ -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" } diff --git a/packages/mobile/ios/AudiusReactNative/Info.plist b/packages/mobile/ios/AudiusReactNative/Info.plist index 5e3ea269e8a..7eff4972d41 100644 --- a/packages/mobile/ios/AudiusReactNative/Info.plist +++ b/packages/mobile/ios/AudiusReactNative/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.193 + 1.1.194 CFBundleSignature ???? CFBundleURLTypes diff --git a/packages/mobile/package.json b/packages/mobile/package.json index dd4206eaf50..a13ccfbde7a 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -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",