Skip to content

Commit

Permalink
Update on_workflow_completed.yaml to not use Omaha Proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
sohomdatta1 committed Feb 11, 2025
1 parent 938669a commit f688ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/on_workflow_completed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
const tag = release.data.tag_name;
const currentGitCommit = '${{ steps.short_sha.outputs.sha_short }}'
const [_, commit, fullVersion, majorVersion] = tag.match(/visiblev8_([0-9a-f]+)-(([0-9]+)\.[0-9.]+)/);
const chromeReleaseVersion = await (await fetch('https://omahaproxy.appspot.com/linux')).text();
const chromeReleaseVersion = (await (await fetch('https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Linux&num=1&offset=0')).json())[0]['version'];
const chromeMajorVersion = chromeReleaseVersion.split('.')[0];
console.log(`tag: ${tag}`);
console.log(`commit: ${commit}`);
Expand Down

0 comments on commit f688ccd

Please sign in to comment.