Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Create main.workflow
Browse files Browse the repository at this point in the history
Publish a new image on every push
  • Loading branch information
chuckha authored Jul 8, 2019
1 parent 1f59add commit 281f70c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
workflow "New workflow" {
on = "push"
resolves = ["./scripts/publish-manager.sh"]
}

action "Docker Registry" {
uses = "actions/docker/login@86ff551d26008267bb89ac11198ba7f1d807b699"
}

action "./scripts/publish-manager.sh" {
uses = "./scripts/publish-manager.sh"
needs = ["Docker Registry"]
env = {
TAG = "latest"
REGISTRY = "docker.pkg.github.com/kubernetes-sigs/cluster-api-provider-docker"
}
}

0 comments on commit 281f70c

Please sign in to comment.