CI: add missing github app volume to release pipeline (#97406)

add github app volume to release pipeline
This commit is contained in:
Kevin Minehart 2024-12-04 09:02:01 -06:00 committed by GitHub
parent 2a82b433a4
commit 6fe184a565
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -3826,6 +3826,8 @@ volumes:
- host:
path: /var/run/docker.sock
name: docker
- name: github-app
temp: {}
---
clone:
retries: 3
@ -4915,6 +4917,8 @@ volumes:
- host:
path: /var/run/docker.sock
name: docker
- name: github-app
path: /github-app
---
clone:
retries: 3
@ -5740,6 +5744,6 @@ kind: secret
name: gcr_credentials
---
kind: signature
hmac: 9b3538ec1bc7180fe775bfab88591c4afb390e2620a279aab6cfe0034d288754
hmac: f95877e361fe41e54412a7abbdf81897d58d9da26e7681b8d50bcb994e2f7909
...

View File

@ -175,6 +175,7 @@ def publish_artifacts_pipelines(mode):
trigger = trigger,
steps = steps,
environment = {"EDITION": "oss"},
volumes = github_app_pipeline_volumes(),
),
]

View File

@ -380,6 +380,7 @@ def rgm_promotion_pipeline():
name = "rgm-promotion",
trigger = promotion_trigger,
steps = steps,
volumes = github_app_step_volumes(),
),
]