-
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy Production Code for Commit 432c473 🚀
- Loading branch information
Showing
169 changed files
with
42,553 additions
and
370 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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
import { ActionInterface, Status } from './constants'; | ||
/** | ||
* Initializes git in the workspace. | ||
*/ | ||
export declare function init(action: ActionInterface): Promise<void | Error>; | ||
/** | ||
* Runs the necessary steps to make the deployment. | ||
*/ | ||
export declare function deploy(action: ActionInterface): Promise<Status>; |
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
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
import { ActionInterface } from './constants'; | ||
/** | ||
* Configures SSH for the workflow. | ||
*/ | ||
export declare function configureSSH(action: ActionInterface): Promise<void>; |
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
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 |
---|---|---|
@@ -1,10 +1,34 @@ | ||
import { ActionInterface } from './constants'; | ||
/** | ||
* Utility function that checks to see if a value is undefined or not. | ||
* If allowEmptyString is passed the parameter is allowed to contain an empty string as a valid parameter. | ||
*/ | ||
export declare const isNullOrUndefined: (value: unknown) => value is "" | null | undefined; | ||
/** | ||
* Generates a token type used for the action. | ||
*/ | ||
export declare const generateTokenType: (action: ActionInterface) => string; | ||
/** | ||
* Generates a the repository path used to make the commits. | ||
*/ | ||
export declare const generateRepositoryPath: (action: ActionInterface) => string; | ||
/** | ||
* Generate absolute folder path by the provided folder name | ||
*/ | ||
export declare const generateFolderPath: (action: ActionInterface) => string; | ||
/** | ||
* Verifies the action has the required parameters to run, otherwise throw an error. | ||
*/ | ||
export declare const checkParameters: (action: ActionInterface) => void; | ||
/** | ||
* Suppresses sensitive information from being exposed in error messages. | ||
*/ | ||
export declare const suppressSensitiveInformation: (str: string, action: ActionInterface) => string; | ||
/** | ||
* Extracts message from an error object. | ||
*/ | ||
export declare const extractErrorMessage: (error: unknown) => string; | ||
/** Strips the protocol from a provided URL. */ | ||
/** | ||
* Strips the protocol from a provided URL. | ||
*/ | ||
export declare const stripProtocolFromUrl: (url: string) => string; |
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.