-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Labels
Milestone
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"]
}
Tiim, samohovets, ForsakenHarmony and anbraten