Skip to content

Release to Staging v2.9.24 - 2026-06-13#2174

Open
github-actions[bot] wants to merge 1 commit into
stagingfrom
release/staging-2026-06-13
Open

Release to Staging v2.9.24 - 2026-06-13#2174
github-actions[bot] wants to merge 1 commit into
stagingfrom
release/staging-2026-06-13

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

🚀 Weekly Release to Staging

Release Date: June 13, 2026
Release Branch: release/staging-2026-06-13

This automated PR promotes a snapshot of dev to staging for testing.

What's Included

All commits merged to dev up to the branch creation time.

Note: This PR uses a dedicated release branch, so new commits to dev will NOT automatically appear here.

Review Checklist

  • All CI checks pass
  • Code review completed
  • QA team notified
  • Ready to merge to staging environment

Next Steps

After merging, the staging environment will be updated. A production release PR will be created on Sunday.


This PR was automatically created by the Release Calendar workflow on June 13, 2026

@vercel

vercel Bot commented Jun 13, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
self-webview-app Ignored Ignored Preview Jun 13, 2026 4:06am

Request Review

@greptile-apps

greptile-apps Bot commented Jun 13, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR removes the --silent flag from the pnpm build:deps command in both the iOS and Android deploy jobs, making dependency build output visible in CI logs instead of suppressed.

  • Both the iOS ("Build Dependencies (iOS)", line ~640) and Android ("Build Dependencies (Android)", line ~1110) job steps are updated consistently.
  • No functional behavior changes — error handling, the || exit 1 guard, and all surrounding steps are untouched.

Confidence Score: 5/5

Safe to merge — the change only affects log verbosity in CI and has no impact on build correctness or deploy behavior.

Removing --silent from pnpm build:deps in both the iOS and Android jobs is a pure observability improvement. The build command, error guard (|| exit 1), and all surrounding steps are unchanged. Both job paths are updated symmetrically, and there are no logic, auth, or data-handling concerns.

No files require special attention.

Important Files Changed

Filename Overview
.github/workflows/mobile-deploy.yml Removes --silent flag from the build:deps pnpm step in both the iOS (line 640) and Android (line 1110) build jobs, so dependency build output is now visible in CI logs.

Sequence Diagram

sequenceDiagram
    participant CI as GitHub Actions Runner
    participant pnpm as pnpm
    participant BuildDeps as build:deps script

    Note over CI: Build Dependencies step (iOS & Android)
    CI->>pnpm: "pnpm --filter @selfxyz/mobile-app run build:deps"
    pnpm->>BuildDeps: execute build:deps
    BuildDeps-->>CI: stdout/stderr (now visible, was --silent)
    alt Build succeeds
        CI->>CI: echo "✅ Dependencies built successfully"
    else Build fails
        CI->>CI: echo "❌ Dependency build failed" + exit 1
    end
Loading

Reviews (1): Last reviewed commit: "fix moible deploy (#2173)" | Re-trigger Greptile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant