diff --git a/.github/workflows/submit-plugin.yml b/.github/workflows/submit-plugin.yml index ae96a4e90..c6236c72e 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 + repository: framer/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 ace276eba..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://framer.com/marketplace", + creatorsApiBase: "https://marketplace.framer.com", framerAppUrl: "https://framer.com", marketplaceBaseUrl: "https://framer.com/marketplace", },