|
1 |
| -workflow "Build & Release Manifest" { |
2 |
| - on = "push" |
3 |
| - resolves = ["manifest-build-and-tag"] |
4 |
| -} |
5 |
| - |
6 |
| -action "manifest-build-and-tag" { |
7 |
| - uses = "./tools/docker/github" |
8 |
| - runs = ["python", "tools/ci/manifest_build.py"] |
9 |
| - secrets = ["GITHUB_TOKEN"] |
10 |
| -} |
11 |
| - |
12 |
| -workflow "Build & Publish Documentation Website" { |
13 |
| - on = "push" |
14 |
| - resolves = ["website-build-and-publish"] |
15 |
| -} |
16 |
| - |
17 |
| -action "website-build-and-publish" { |
18 |
| - uses = "./tools/docker/documentation" |
19 |
| - runs = ["/bin/bash", "tools/ci/website_build.sh"] |
20 |
| - secrets = ["DEPLOY_TOKEN"] |
21 |
| -} |
| 1 | +#workflow "Build & Release Manifest" { |
| 2 | +# on = "push" |
| 3 | +# resolves = ["manifest-build-and-tag"] |
| 4 | +#} |
| 5 | +# |
| 6 | +#action "manifest-build-and-tag" { |
| 7 | +# uses = "./tools/docker/github" |
| 8 | +# runs = ["python", "tools/ci/manifest_build.py"] |
| 9 | +# secrets = ["GITHUB_TOKEN"] |
| 10 | +#} |
| 11 | +# |
| 12 | +#workflow "Build & Publish Documentation Website" { |
| 13 | +# on = "push" |
| 14 | +# resolves = ["website-build-and-publish"] |
| 15 | +#} |
| 16 | +# |
| 17 | +#action "website-build-and-publish" { |
| 18 | +# uses = "./tools/docker/documentation" |
| 19 | +# runs = ["/bin/bash", "tools/ci/website_build.sh"] |
| 20 | +# secrets = ["DEPLOY_TOKEN"] |
| 21 | +#} |
22 | 22 |
|
23 | 23 | workflow "Synchronize the Pull Request Preview" {
|
24 | 24 | on = "pull_request"
|
|
0 commit comments