mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
25 lines
484 B
HCL
25 lines
484 B
HCL
workflow "Deploy demo app to Heroku" {
|
|
on = "push"
|
|
resolves = "release"
|
|
}
|
|
|
|
action "login" {
|
|
uses = "actions/heroku@master"
|
|
args = "container:login"
|
|
secrets = ["HEROKU_API_KEY"]
|
|
}
|
|
|
|
action "push" {
|
|
uses = "actions/heroku@master"
|
|
needs = "login"
|
|
args = "container:push -a karma-demo web"
|
|
secrets = ["HEROKU_API_KEY"]
|
|
}
|
|
|
|
action "release" {
|
|
uses = "actions/heroku@master"
|
|
needs = "push"
|
|
args = "container:release -a karma-demo web"
|
|
secrets = ["HEROKU_API_KEY"]
|
|
}
|