Open
Description
Github actions are releasing soon-ish.
Having a prepared github action for exoframe would be neat.
The easiest way to go about it would be to fork heroku (see also npm, npx) action and tweak it accordingly.
Something like this should work:
workflow "Deploy" {
on = "push"
resolves = ["deploy"]
}
action "deploy" {
uses = "exoframe/action@master"
args = "deploy -e http://exo.server.com -t $EXO_TOKEN"
secrets = ["EXO_TOKEN"]
}