diff --git a/.github/workflows/frontend-admin-build.yml b/.github/workflows/frontend-admin-build.yml index 6fc86f6f..065a4341 100644 --- a/.github/workflows/frontend-admin-build.yml +++ b/.github/workflows/frontend-admin-build.yml @@ -125,7 +125,7 @@ jobs: EXPO_PUBLIC_UPDATE_URL: ${{ steps.config.outputs.xavia_url }} NODE_OPTIONS: "--max-old-space-size=2048" run: | - RUNTIME_VERSION=$(jq -r '.expo.version' app.json) + RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) npx expo export --platform android --output-dir dist cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ steps.config.outputs.xavia_url }}/api/upload" \ diff --git a/.github/workflows/frontend-client-build.yml b/.github/workflows/frontend-client-build.yml index e067f3ee..1d403f92 100644 --- a/.github/workflows/frontend-client-build.yml +++ b/.github/workflows/frontend-client-build.yml @@ -125,7 +125,7 @@ jobs: EXPO_PUBLIC_UPDATE_URL: ${{ steps.config.outputs.xavia_url }} NODE_OPTIONS: "--max-old-space-size=2048" run: | - RUNTIME_VERSION=$(jq -r '.expo.version' app.json) + RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) npx expo export --platform android --output-dir dist cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ steps.config.outputs.xavia_url }}/api/upload" \