Tucker McKnight <tucker@pangolin.lan> | Sun Oct 12 2025
Add an optional "artifactSteps" category This field in the config allows you to specify a list of build steps. These build steps will run on every branch in the repo, then copy a directory into the resulting _site directory for that given branch.
10 11 12 13 14
"description": "Must be set to `\"darcs\"`.",
"type": "string"
},
"branches": {
"additionalProperties": {
"additionalProperties": false,10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
"description": "Must be set to `\"darcs\"`.",
"type": "string"
},
"artifactSteps": {
"items": {
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"copyFrom": {
"type": "string"
},
"copyTo": {
"type": "string"
}
},
"required": [
"command",
"copyFrom",
"copyTo"
],
"type": "object"
},
"type": "array"
},
"branches": {
"additionalProperties": {
"additionalProperties": false,58 59 60 61 62
"const": "git",
"type": "string"
},
"branchesToPull": {
"items": {
"type": "string"58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
"const": "git",
"type": "string"
},
"artifactSteps": {
"items": {
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"copyFrom": {
"type": "string"
},
"copyTo": {
"type": "string"
}
},
"required": [
"command",
"copyFrom",
"copyTo"
],
"type": "object"
},
"type": "array"
},
"branchesToPull": {
"items": {
"type": "string"70 71 72 73 74 75
branchesToPull: Array<string>,
languageExtensions?: {
[fileExtension: string]: string
}
}
/**70 71 72 73 74 75 76 77 78 79 80
branchesToPull: Array<string>,
languageExtensions?: {
[fileExtension: string]: string
},
artifactSteps?: {
command: string,
copyFrom: string,
copyTo: string,
}[]
}
/**152 153 154 155
*/
languageExtensions?: {
[fileExtension: string]: string
}
}152 153 154 155 156 157 158 159 160
*/
languageExtensions?: {
[fileExtension: string]: string
},
artifactSteps?: {
command: string,
copyFrom: string,
copyTo: string,
}[]
}