Update main.workflow

This commit is contained in:
Julien Bisconti 2019-03-02 21:28:06 +01:00 committed by GitHub
parent d84b9951e4
commit 76f292ee05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 43 additions and 43 deletions

86
.github/main.workflow vendored
View File

@ -1,48 +1,48 @@
workflow "New workflow" {
on = "push"
resolves = ["push changes"]
}
# workflow "New workflow" {
# on = "push"
# resolves = ["push changes"]
# }
action "skip-commit" {
uses = "veggiemonk/skip-commit@449e94fa83e7918c4079f37322205e17b868f993"
env = {
COMMIT_FILTER = "skip-ci"
}
}
# action "skip-commit" {
# uses = "veggiemonk/skip-commit@449e94fa83e7918c4079f37322205e17b868f993"
# env = {
# COMMIT_FILTER = "skip-ci"
# }
# }
action "npm install" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
needs = ["skip-commit"]
args = "install"
}
# action "npm install" {
# uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
# needs = ["skip-commit"]
# args = "install"
# }
action "npm run build" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
needs = ["npm install"]
args = "run build"
}
# action "npm run build" {
# uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
# needs = ["npm install"]
# args = "run build"
# }
action "Build metadata" {
needs = ["npm run build"]
uses = "actions/npm@master"
runs = "sh -l -c"
args = ["node buildMetadata.js"]
secrets = ["GITHUB_TOKEN"]
env = {
GIT_EMAIL = "alex.blaine@layder.io"
GIT_USERNAME = "veggiemonk"
}
}
# action "Build metadata" {
# needs = ["npm run build"]
# uses = "actions/npm@master"
# runs = "sh -l -c"
# args = ["node buildMetadata.js"]
# secrets = ["GITHUB_TOKEN"]
# env = {
# GIT_EMAIL = "alex.blaine@layder.io"
# GIT_USERNAME = "veggiemonk"
# }
# }
action "push changes" {
uses = "veggiemonk/bin/git@master"
needs = ["Build metadata"]
runs = "sh -c $@"
args = "push.sh"
secrets = ["GITHUB_TOKEN"]
env = {
GIT_EMAIL = "alex.blaine@layder.io"
GIT_USERNAME = "veggiemonk-bot"
GIT_USER = "veggiemonk"
}
}
# action "push changes" {
# uses = "veggiemonk/bin/git@master"
# needs = ["Build metadata"]
# runs = "sh -c $@"
# args = "push.sh"
# secrets = ["GITHUB_TOKEN"]
# env = {
# GIT_EMAIL = "alex.blaine@layder.io"
# GIT_USERNAME = "veggiemonk-bot"
# GIT_USER = "veggiemonk"
# }
# }