diff --git a/apps/publisher/eslint.config.mjs b/apps/publisher/eslint.config.mjs index cfea77437..d884dedff 100644 --- a/apps/publisher/eslint.config.mjs +++ b/apps/publisher/eslint.config.mjs @@ -1,3 +1,8 @@ import { base, defineConfig } from '@custom/eslint-config'; -export default defineConfig([...base]); +export default defineConfig([ + ...base, + { + ignores: ['.cache/**'], + }, +]); diff --git a/apps/publisher/publisher.config.ts b/apps/publisher/publisher.config.ts index 4f40ae0e4..65111013a 100644 --- a/apps/publisher/publisher.config.ts +++ b/apps/publisher/publisher.config.ts @@ -72,6 +72,8 @@ function githubEnvVars(): Record { 'PUBLISHER_OAUTH2_SESSION_SECRET', 'PUBLISHER_OAUTH2_ENVIRONMENT_TYPE', 'PUBLISHER_OAUTH2_TOKEN_HOST', + 'VITE_DECAP_REPO', + 'VITE_DECAP_BRANCH', ].map((name) => { if (name === 'DRUPAL_INTERNAL_URL') { // No internal URLs when building on Github.