From dbb086ff3759be34ff6196780763f6ffdb95705f Mon Sep 17 00:00:00 2001 From: Arnold Noronha Date: Tue, 10 Feb 2026 08:54:24 -0500 Subject: [PATCH 1/3] .. --- .github/workflows/tests.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d9223fb..561dd71 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,3 +23,15 @@ jobs: -skipPackagePluginValidation \ -skip-testing:SampleWorkshopAppUITests \ -resultBundlePath TestResults.xcresult + + - name: Download Screenshotbot recorder + run: curl https://screenshotbot.io/recorder.sh | sh + + - name: Upload to Screenshotbot + env: + SCREENSHOTBOT_API_KEY: ${{ secrets.SCREENSHOTBOT_API_KEY }} + SCREENSHOTBOT_API_SECRET: ${{ secrets.SCREENSHOTBOT_API_SECRET }} + run: | + ~/screenshotbot/recorder \ + --directory SampleWorkshopAppTests/__Snapshots__/ \ + --channel prefire-sample-app From 65d0f776434538955ac4f8cef75c3c3c32babc30 Mon Sep 17 00:00:00 2001 From: Arnold Noronha Date: Tue, 10 Feb 2026 09:04:55 -0500 Subject: [PATCH 2/3] Add --main-branch --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 561dd71..c18c1b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,4 +34,5 @@ jobs: run: | ~/screenshotbot/recorder \ --directory SampleWorkshopAppTests/__Snapshots__/ \ - --channel prefire-sample-app + --channel prefire-sample-app \ + --main-branch main From 4714a78f1d54fd6391a2f131b718e2ab3606e68f Mon Sep 17 00:00:00 2001 From: Arnold Noronha Date: Tue, 10 Feb 2026 09:26:05 -0500 Subject: [PATCH 3/3] Add --main-branch and --recursive flags to recorder Co-Authored-By: Claude Opus 4.6 --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c18c1b8..9421c38 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,4 +35,5 @@ jobs: ~/screenshotbot/recorder \ --directory SampleWorkshopAppTests/__Snapshots__/ \ --channel prefire-sample-app \ - --main-branch main + --main-branch main \ + --recursive