diff --git a/.github/workflows/frontend-admin-build.yml b/.github/workflows/frontend-admin-build.yml index eb6abbf5..348102fa 100644 --- a/.github/workflows/frontend-admin-build.yml +++ b/.github/workflows/frontend-admin-build.yml @@ -149,6 +149,7 @@ jobs: run: | RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) npx expo export --platform android --output-dir dist + npx expo config --json > dist/expoconfig.json cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ steps.config.outputs.xavia_url }}/api/upload" \ -H "Authorization: Bearer ${{ steps.config.outputs.xavia_key }}" \ diff --git a/.github/workflows/frontend-client-build.yml b/.github/workflows/frontend-client-build.yml index af2b354c..8c00aed5 100644 --- a/.github/workflows/frontend-client-build.yml +++ b/.github/workflows/frontend-client-build.yml @@ -149,6 +149,7 @@ jobs: run: | RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) npx expo export --platform android --output-dir dist + npx expo config --json > dist/expoconfig.json cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ steps.config.outputs.xavia_url }}/api/upload" \ -H "Authorization: Bearer ${{ steps.config.outputs.xavia_key }}" \