Update main.workflow

pull/106/head
Alex Kern 7 years ago committed by GitHub
parent 3c54e4dd63
commit fa281b2439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,6 @@
workflow "Build on push" {
resolves = ["Docker build, tag, and push"]
on = "push"
resolves = ["GitHub Action for AWS"]
}
action "Docker build, tag, and push" {
@ -12,3 +12,10 @@ action "Docker build, tag, and push" {
action "AWS deployment" {
uses = "actions/aws/cli@efb074ae4510f2d12c7801e4461b65bf5e8317e6"
}
action "GitHub Action for AWS" {
uses = "actions/aws/cli@efb074ae4510f2d12c7801e4461b65bf5e8317e6"
needs = ["Docker build, tag, and push"]
secrets = ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY"]
runs = "aws"
}

Loading…
Cancel
Save