Skip to content

Commit

Permalink
fix: GitHub sysroots url fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Aug 16, 2024
1 parent d749183 commit 211eb7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
merge-multiple: true
- name: Download sysroots.json from Electron
run: |
json_url="https://github.com/electron/electron/blob/main/script/sysroots.json"
curl --output build/linux/sysroot_scripts/sysroots.json $json_url
json_url="https://raw.githubusercontent.com/electron/electron/main/script/sysroots.json"
curl --output build/linux/sysroot_scripts/sysroots.json $json_url -H "Accept: application/json"
az extension add --name storage-preview
- name: Upload Sysroots to Azure
run: ./build/linux/sysroot_scripts/build_and_upload.py --upload
Expand Down

0 comments on commit 211eb7f

Please sign in to comment.