From e94e55e225302186a4297f011e07170f12ab1938 Mon Sep 17 00:00:00 2001 From: Alex Kern Date: Sat, 1 Jun 2019 16:58:38 -0700 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index bf53695..404caf6 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,9 +1,9 @@ -workflow "Build and deploy on push" { - resolves = ["Docker Registry"] +workflow "Build on push" { + resolves = ["Docker build, tag, and push"] on = "push" } -action "Docker Registry" { - uses = "actions/docker/login@8cdf801b322af5f369e00d85e9cf3a7122f49108" +action "Docker build, tag, and push" { + uses = "pangzineng/Github-Action-One-Click-Docker@master" secrets = ["DOCKER_USERNAME", "DOCKER_PASSWORD"] }