mirror of
https://github.com/veggiemonk/awesome-docker.git
synced 2024-12-22 14:15:10 -05:00
Update main.workflow
This commit is contained in:
parent
d84b9951e4
commit
76f292ee05
86
.github/main.workflow
vendored
86
.github/main.workflow
vendored
@ -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"
|
||||
# }
|
||||
# }
|
||||
|
Loading…
Reference in New Issue
Block a user