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 = {
|
const forgejo = {
|
||||||
url: process.env.FORGEJO_URL || "",
|
url: process.env.FORGEJO_URL || "",
|
||||||
token: process.env.FORGEJO_TOKEN || "",
|
token: process.env.FORGEJO_TOKEN || "",
|
||||||
branch: process.env.BRANCH || "static-pages",
|
branch: process.env.FORGEJO_BRANCH || "static-pages",
|
||||||
repo: process.env.REPO || "pages",
|
repo: process.env.FORGEJO_REPO || "pages",
|
||||||
};
|
};
|
||||||
|
|
||||||
function verifyRequiredVariables(): void {
|
function verifyRequiredVariables(): void {
|
||||||
|
@ -22,8 +22,8 @@ function verifyRequiredVariables(): void {
|
||||||
"FORGEJO_URL",
|
"FORGEJO_URL",
|
||||||
"FORGEJO_TOKEN",
|
"FORGEJO_TOKEN",
|
||||||
|
|
||||||
"BRANCH",
|
"FORGEJO_BRANCH",
|
||||||
"REPO",
|
"FORGEJO_REPO",
|
||||||
];
|
];
|
||||||
|
|
||||||
let hasError = false;
|
let hasError = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue