mirror of
https://github.com/servo/servo.git
synced 2025-07-10 08:53:41 +01:00
21 lines
515 B
HCL
21 lines
515 B
HCL
workflow "Build & Release Manifest" {
|
|
on = "push"
|
|
resolves = ["manifest-build-and-tag"]
|
|
}
|
|
|
|
action "manifest-build-and-tag" {
|
|
uses = "./tools/docker/github"
|
|
runs = ["python", "tools/ci/manifest_build.py"]
|
|
secrets = ["GITHUB_TOKEN"]
|
|
}
|
|
|
|
workflow "Build & Publish Documentation Website" {
|
|
on = "push"
|
|
resolves = ["website-build-and-publish"]
|
|
}
|
|
|
|
action "website-build-and-publish" {
|
|
uses = "./tools/docker/documentation"
|
|
runs = ["/bin/bash", "tools/ci/website_build.sh"]
|
|
secrets = ["DEPLOY_TOKEN"]
|
|
}
|