2
0
Fork 0
mirror of https://github.com/redhat-actions/push-to-registry.git synced 2025-06-27 16:25:53 +00:00

first implementation push to quay action

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
Luca Stocchi 2020-11-07 13:04:04 +01:00
commit 9a0a0927cd
No known key found for this signature in database
GPG key ID: 930BB00F3FCF30A4
11 changed files with 4046 additions and 0 deletions

11
src/types.ts Normal file
View file

@ -0,0 +1,11 @@
export interface CommandSucceeeded {
readonly succeeded: true;
readonly output?: string;
}
export interface CommandFailed {
readonly succeeded: false;
readonly reason?: string;
}
export type CommandResult = CommandFailed | CommandSucceeeded;