awesome-docker/.github/main.workflow

28 lines
605 B
Markdown
Raw Normal View History

2019-01-24 21:05:14 +00:00
workflow "New workflow" {
on = "push"
resolves = ["Shell"]
}
action "npm install" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
args = "install"
}
action "npm run build" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
needs = ["npm install"]
args = "run build"
}
action "Shell" {
uses = "veggiemonk/bin/git@master"
2019-01-24 21:12:50 +00:00
args = "TOKEN=$GITHUB_TOKEN node buildMetadata.js && ./push.sh"
2019-01-24 21:05:14 +00:00
needs = ["npm run build"]
secrets = ["GITHUB_TOKEN"]
env = {
"GIT_EMAIL" = "alex.blaine@layder.io"
GIT_USERNAME = "veggiemonk"
}
2019-01-24 21:18:32 +00:00
runs = "sh -c \"$@\""
2019-01-24 21:05:14 +00:00
}