-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: move EUI+ deployment step to the right pipeline
- Loading branch information
Showing
2 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
12 changes: 10 additions & 2 deletions
12
.buildkite/pipelines/pipeline_pull_request_deploy_docs.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
## 🏠/.buildkite/pipelines/pipeline_pull_request_deploy_docs.yml | ||
|
||
steps: | ||
- agents: | ||
- command: .buildkite/scripts/pipelines/pipeline_deploy_docs.sh | ||
label: ":newspaper: Build and deploy EUI documentation website" | ||
agents: | ||
provider: "gcp" | ||
command: .buildkite/scripts/pipelines/pipeline_deploy_docs.sh | ||
if: build.branch != "main" # We don't want to deploy docs on main, only on manual release | ||
- command: .buildkite/scripts/pipelines/pipeline_deploy_new_docs.sh | ||
label: ":docusaurus: Build and deploy new documentation website" | ||
agents: | ||
provider: gcp | ||
machineType: "n2-standard-1" | ||
image: "family/eui-ubuntu-2204" | ||
if: build.branch != "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters