diff --git a/.github/workflows/omnex-plateform-app-build.yml b/.github/workflows/omnex-plateform-app-build.yml index 08a49a1..2bba67b 100644 --- a/.github/workflows/omnex-plateform-app-build.yml +++ b/.github/workflows/omnex-plateform-app-build.yml @@ -111,6 +111,7 @@ jobs: RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) COMMIT_MESSAGE=$(git log -1 --pretty=%s ${{ github.sha }}) npx expo export --platform android --output-dir dist + npx expo config --json > dist/expoconfig.json jq '.expo' app.json > dist/expoconfig.json cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ secrets.XAVIA_API_URL_ADMIN }}/api/upload" \ diff --git a/.github/workflows/omnex-plateform-client-build.yml b/.github/workflows/omnex-plateform-client-build.yml index 99aa83b..fad9c61 100644 --- a/.github/workflows/omnex-plateform-client-build.yml +++ b/.github/workflows/omnex-plateform-client-build.yml @@ -111,6 +111,7 @@ jobs: RUNTIME_VERSION=$(jq -r '.expo.runtimeVersion' app.json) COMMIT_MESSAGE=$(git log -1 --pretty=%s ${{ github.sha }}) npx expo export --platform android --output-dir dist + npx expo config --json > dist/expoconfig.json jq '.expo' app.json > dist/expoconfig.json cd dist && zip -r ../bundle.zip . && cd .. curl -X POST "${{ secrets.XAVIA_API_URL_CLIENT }}/api/upload" \