mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
c3c62021e5
* chore: remove ui * chore: remove size step * chore: update theme plugin * chore: update lock file * Update main.workflow * chore: update js-yaml dep * chore: @verdaccio/ui-theme@0.0.4 * feat: allows theme as a plugin * chore: update package description
21 lines
474 B
HCL
21 lines
474 B
HCL
workflow "New workflow" {
|
|
resolves = [
|
|
"Docker build health check",
|
|
"Test Publish Verdaccio",
|
|
]
|
|
on = "push"
|
|
}
|
|
|
|
action "Docker build health check" {
|
|
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
|
|
args = "build ."
|
|
env = {
|
|
VERDACCIO_BUILD_REGISTRY = "https://registry.verdaccio.org"
|
|
}
|
|
}
|
|
|
|
action "Test Publish Verdaccio" {
|
|
uses = "verdaccio/github-actions/publish@v0.1.0"
|
|
needs = ["Docker build health check"]
|
|
args = "-d"
|
|
}
|