-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d04561
commit a099e40
Showing
8 changed files
with
33,467 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
dist | ||
.idea | ||
.vscode | ||
|
||
|
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,7 @@ | ||
/// <reference types="node" /> | ||
import { exec as _childProcessExec } from "node:child_process"; | ||
export { exec } from "@actions/exec"; | ||
declare const childProcessExec: typeof _childProcessExec.__promisify__; | ||
export declare function execShell(command: string, { silent, ...options }?: Parameters<typeof childProcessExec>[1] & { | ||
silent?: boolean; | ||
}): Promise<number | null>; |
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,6 @@ | ||
declare function installWrangler(): Promise<void>; | ||
declare function authenticationSetup(): void; | ||
declare function execCommands(commands: string[], cmdType: string): Promise<void>; | ||
declare function uploadSecrets(): Promise<void>; | ||
declare function wranglerCommands(): Promise<void>; | ||
export { authenticationSetup, execCommands, installWrangler, uploadSecrets, wranglerCommands, }; |
Oops, something went wrong.