mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Serverless release pipeline - adjust version key for QA (#192968)
## Summary This PR adjusts the serverless release pipeline script to use the new key for QA when reading the version.yaml file. Note that this is a quick fix to get the pipeline running again. Longer term, we could have multiple slices of QA, so we should think about how to prepare the script for that scenario.
This commit is contained in:
parent
f46dc9e3d5
commit
a9ff2a3c44
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ export async function getCurrentQARelease() {
|
|||
// @ts-ignore
|
||||
const fileContent = Buffer.from(releasesFile.data.content, 'base64').toString('utf8');
|
||||
|
||||
const sha = fileContent.match(`qa: "([a-z0-9]+)"`)?.[1];
|
||||
const sha = fileContent.match(`qa-ds-1: "([a-z0-9]+)"`)?.[1];
|
||||
|
||||
if (!sha) {
|
||||
throw new Error('Could not find QA hash in current releases file');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue