-
Notifications
You must be signed in to change notification settings - Fork 63
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
b74f266
commit a7fe665
Showing
10 changed files
with
10,770 additions
and
37,074 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,6 @@ typings/ | |
# Allure | ||
allure-report | ||
allure-results | ||
|
||
# husky | ||
.husky |
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,55 +1,59 @@ | ||
name: 'Docker Build & Push Action' | ||
description: 'Builds a Docker image and pushes to a private registry with support for multiple tags' | ||
author: 'Sean Smith' | ||
name: "Docker Build & Push Action" | ||
description: "Builds a Docker image and pushes to a private registry with support for multiple tags" | ||
author: "Sean Smith" | ||
inputs: | ||
image: | ||
description: 'Name of the Docker image' | ||
description: "Name of the Docker image" | ||
required: true | ||
tags: | ||
description: 'Tags override for Docker image' | ||
description: "Tags override for Docker image" | ||
required: false | ||
registry: | ||
description: 'Target Docker registry' | ||
description: "Target Docker registry" | ||
required: true | ||
dockerfile: | ||
description: 'Location of Dockerfile, if not Dockerfile in root directory' | ||
description: "Location of Dockerfile, if not Dockerfile in root directory" | ||
required: false | ||
default: 'Dockerfile' | ||
default: "Dockerfile" | ||
directory: | ||
description: 'Directory to run `docker build` from, if not project root' | ||
description: "Directory to run `docker build` from, if not project root" | ||
required: false | ||
buildArgs: | ||
description: 'Docker build arguments passed via --build-arg' | ||
description: "Docker build arguments passed via --build-arg" | ||
required: false | ||
labels: | ||
description: 'Docker build labels passed via --label' | ||
description: "Docker build labels passed via --label" | ||
required: false | ||
target: | ||
description: 'Docker build target passed via --target' | ||
description: "Docker build target passed via --target" | ||
required: false | ||
username: | ||
description: 'Docker registry username' | ||
description: "Docker registry username" | ||
required: false | ||
password: | ||
description: 'Docker registry password' | ||
description: "Docker registry password" | ||
required: false | ||
gitHubOrg: | ||
description: 'GitHub organization to push image to (if not current)' | ||
description: "GitHub organization to push image to (if not current)" | ||
required: false | ||
addLatest: | ||
description: 'Adds latest tag to auto-generated GitOps tag' | ||
description: "Adds latest tag to auto-generated GitOps tag" | ||
required: false | ||
default: 'false' | ||
default: "false" | ||
addTimestamp: | ||
description: "Suffixes a build timestamp to the branch-based Docker tag" | ||
required: false | ||
default: "false" | ||
outputs: | ||
imageFullName: | ||
description: 'Full name of the Docker image with registry prefix and tag suffix' | ||
description: "Full name of the Docker image with registry prefix and tag suffix" | ||
imageName: | ||
description: 'Name of the Docker image with owner prefix' | ||
description: "Name of the Docker image with owner prefix" | ||
tags: | ||
description: 'Tags for the Docker image' | ||
description: "Tags for the Docker image" | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
using: "node12" | ||
main: "dist/index.js" | ||
branding: | ||
icon: 'anchor' | ||
color: 'blue' | ||
icon: "anchor" | ||
color: "blue" |
Oops, something went wrong.