-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: hossainemruz <[email protected]>
- Loading branch information
1 parent
93fc487
commit bb56bfb
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build] | ||
command = "cd exampleSite && hugo --gc --minify" | ||
publish = "public" | ||
|
||
[context.production.environment] | ||
HUGO_ENABLEGITINFO = "true" | ||
HUGO_ENV = "production" | ||
HUGO_VERSION = "0.120.1" | ||
NODE_VERSION = "v18.12.1" | ||
NPM_VERSION = "8.19.2" | ||
|
||
[context.split1] | ||
command = "cd exampleSite && hugo mod tidy && hugo mod npm pack && npm install && hugo --gc --minify --enableGitInfo" | ||
|
||
[context.split1.environment] | ||
HUGO_ENV = "production" | ||
HUGO_VERSION = "0.120.1" | ||
NODE_VERSION = "v18.12.1" | ||
NPM_VERSION = "8.19.2" | ||
|
||
[context.deploy-preview] | ||
command = "cd exampleSite && hugo mod tidy && hugo mod npm pack && npm install && hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL" | ||
|
||
[context.deploy-preview.environment] | ||
HUGO_VERSION = "0.120.1" | ||
NODE_VERSION = "v18.12.1" | ||
NPM_VERSION = "8.19.2" | ||
|
||
[context.branch-deploy] | ||
command = "cd exampleSite && hugo mod tidy && hugo mod npm pack && npm install && hugo --gc --minify -b $DEPLOY_PRIME_URL" | ||
|
||
[context.branch-deploy.environment] | ||
HUGO_VERSION = "0.120.1" | ||
NODE_VERSION = "v18.12.1" | ||
NPM_VERSION = "8.19.2" | ||
|
||
[context.next.environment] | ||
HUGO_ENABLEGITINFO = "true" |