From b4e3eaf59fab2dc1965bbf239b5d340cad7e7013 Mon Sep 17 00:00:00 2001 From: Niek Date: Wed, 18 Feb 2026 12:25:15 +0100 Subject: [PATCH 1/4] fix creators API base URL --- scripts/lib/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/env.ts b/scripts/lib/env.ts index ace276eba..00057c23c 100644 --- a/scripts/lib/env.ts +++ b/scripts/lib/env.ts @@ -35,7 +35,7 @@ export interface EnvironmentUrls { export const ENVIRONMENT_URLS: Record = { production: { apiBase: "https://api.framer.com", - creatorsApiBase: "https://framer.com/marketplace", + creatorsApiBase: "https://framer.com/marketplace/api", framerAppUrl: "https://framer.com", marketplaceBaseUrl: "https://framer.com/marketplace", }, From dfba9dba31db1595a36554ba3b34d52e77563346 Mon Sep 17 00:00:00 2001 From: Niek Date: Wed, 18 Feb 2026 13:20:20 +0100 Subject: [PATCH 2/4] update to marketplace.framer.com --- scripts/lib/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/env.ts b/scripts/lib/env.ts index 00057c23c..a7be67d60 100644 --- a/scripts/lib/env.ts +++ b/scripts/lib/env.ts @@ -35,7 +35,7 @@ export interface EnvironmentUrls { export const ENVIRONMENT_URLS: Record = { production: { apiBase: "https://api.framer.com", - creatorsApiBase: "https://framer.com/marketplace/api", + creatorsApiBase: "https://marketplace.framer.com/api", framerAppUrl: "https://framer.com", marketplaceBaseUrl: "https://framer.com/marketplace", }, From caed7d016edafbc86881081c4df7c957e52f1fe6 Mon Sep 17 00:00:00 2001 From: Niek Date: Wed, 18 Feb 2026 14:23:02 +0100 Subject: [PATCH 3/4] fix submit-plugin workflow to use selected branch for tooling checkout Co-Authored-By: Claude Opus 4.6 --- .github/workflows/submit-plugin.yml | 2 ++ scripts/lib/env.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/submit-plugin.yml b/.github/workflows/submit-plugin.yml index ae96a4e90..97663846b 100644 --- a/.github/workflows/submit-plugin.yml +++ b/.github/workflows/submit-plugin.yml @@ -87,10 +87,12 @@ jobs: # Checkout the plugins repo (scripts + tooling). # For workflow_dispatch this is redundant (same repo), but keeps the flow uniform. + # When triggered manually, use the selected branch; for workflow_call, use default branch. - name: Checkout tooling uses: actions/checkout@v4 with: repository: niekert/plugins + ref: ${{ github.event_name == 'workflow_dispatch' && github.ref || '' }} path: tooling - name: Configure git identity diff --git a/scripts/lib/env.ts b/scripts/lib/env.ts index a7be67d60..b7b1e5355 100644 --- a/scripts/lib/env.ts +++ b/scripts/lib/env.ts @@ -35,7 +35,7 @@ export interface EnvironmentUrls { export const ENVIRONMENT_URLS: Record = { production: { apiBase: "https://api.framer.com", - creatorsApiBase: "https://marketplace.framer.com/api", + creatorsApiBase: "https://marketplace.framer.com", framerAppUrl: "https://framer.com", marketplaceBaseUrl: "https://framer.com/marketplace", }, From 03bd63a5a8674f18df8e8da43ba5346854924565 Mon Sep 17 00:00:00 2001 From: Niek Date: Wed, 18 Feb 2026 14:27:41 +0100 Subject: [PATCH 4/4] fix: still referencing the fork --- .github/workflows/submit-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/submit-plugin.yml b/.github/workflows/submit-plugin.yml index 97663846b..c6236c72e 100644 --- a/.github/workflows/submit-plugin.yml +++ b/.github/workflows/submit-plugin.yml @@ -91,7 +91,7 @@ jobs: - name: Checkout tooling uses: actions/checkout@v4 with: - repository: niekert/plugins + repository: framer/plugins ref: ${{ github.event_name == 'workflow_dispatch' && github.ref || '' }} path: tooling