update env vars for conflicts
All checks were successful
Code quality checks / biome (push) Successful in 13s
All checks were successful
Code quality checks / biome (push) Successful in 13s
This commit is contained in:
parent
d4b8caa0c5
commit
8bfa1000b1
1 changed files with 4 additions and 4 deletions
|
@ -10,8 +10,8 @@ const environment: Environment = {
|
|||
const forgejo = {
|
||||
url: process.env.FORGEJO_URL || "",
|
||||
token: process.env.FORGEJO_TOKEN || "",
|
||||
branch: process.env.BRANCH || "static-pages",
|
||||
repo: process.env.REPO || "pages",
|
||||
branch: process.env.FORGEJO_BRANCH || "static-pages",
|
||||
repo: process.env.FORGEJO_REPO || "pages",
|
||||
};
|
||||
|
||||
function verifyRequiredVariables(): void {
|
||||
|
@ -22,8 +22,8 @@ function verifyRequiredVariables(): void {
|
|||
"FORGEJO_URL",
|
||||
"FORGEJO_TOKEN",
|
||||
|
||||
"BRANCH",
|
||||
"REPO",
|
||||
"FORGEJO_BRANCH",
|
||||
"FORGEJO_REPO",
|
||||
];
|
||||
|
||||
let hasError = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue