mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
Formatting
This commit is contained in:
parent
797f0da2e1
commit
27a495c42c
@ -13,7 +13,7 @@ export interface ActionInterface {
|
|||||||
/** The branch that the action should deploy to. */
|
/** The branch that the action should deploy to. */
|
||||||
branch: string
|
branch: string
|
||||||
/** If your project generates hashed files on build you can use this option to automatically delete them from the deployment branch with each deploy. This option can be toggled on by setting it to true. */
|
/** If your project generates hashed files on build you can use this option to automatically delete them from the deployment branch with each deploy. This option can be toggled on by setting it to true. */
|
||||||
clean?: boolean | null;
|
clean?: boolean | null
|
||||||
/** If you need to use CLEAN but you'd like to preserve certain files or folders you can use this option. */
|
/** If you need to use CLEAN but you'd like to preserve certain files or folders you can use this option. */
|
||||||
cleanExclude?: string | string[]
|
cleanExclude?: string | string[]
|
||||||
/** If you need to customize the commit message for an integration you can do so. */
|
/** If you need to customize the commit message for an integration you can do so. */
|
||||||
@ -27,7 +27,7 @@ export interface ActionInterface {
|
|||||||
/** GitHub deployment token. */
|
/** GitHub deployment token. */
|
||||||
gitHubToken?: string | null
|
gitHubToken?: string | null
|
||||||
/** Determines if the action is running in test mode or not. */
|
/** Determines if the action is running in test mode or not. */
|
||||||
isTest?: boolean | null;
|
isTest?: boolean | null
|
||||||
/** The git config name. */
|
/** The git config name. */
|
||||||
name?: string
|
name?: string
|
||||||
/** The repository path, for example JamesIves/github-pages-deploy-action. */
|
/** The repository path, for example JamesIves/github-pages-deploy-action. */
|
||||||
@ -37,7 +37,7 @@ export interface ActionInterface {
|
|||||||
/** The root directory where your project lives. */
|
/** The root directory where your project lives. */
|
||||||
root?: string
|
root?: string
|
||||||
/** Set to true if you're using an ssh client in your build step. */
|
/** Set to true if you're using an ssh client in your build step. */
|
||||||
ssh?: boolean | null;
|
ssh?: boolean | null
|
||||||
/** If you'd like to push the contents of the deployment folder into a specific directory on the deployment branch you can specify it here. */
|
/** If you'd like to push the contents of the deployment folder into a specific directory on the deployment branch you can specify it here. */
|
||||||
targetFolder?: string
|
targetFolder?: string
|
||||||
/** The token type, ie ssh/github token/access token, this gets automatically generated. */
|
/** The token type, ie ssh/github token/access token, this gets automatically generated. */
|
||||||
|
Loading…
Reference in New Issue
Block a user