From a414f43925aa360ef46840218580b402ea866c5e Mon Sep 17 00:00:00 2001 From: Alex Kern Date: Sat, 1 Jun 2019 16:52:48 -0700 Subject: [PATCH] Add GH actions workflow --- .github/main.workflow | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..bf53695 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "Build and deploy on push" { + resolves = ["Docker Registry"] + on = "push" +} + +action "Docker Registry" { + uses = "actions/docker/login@8cdf801b322af5f369e00d85e9cf3a7122f49108" + secrets = ["DOCKER_USERNAME", "DOCKER_PASSWORD"] +}