Skip to content

Commit

Permalink
ci: fix github-script v7 incompatibility
Browse files Browse the repository at this point in the history
Seems like something changed with how the location header is parsed.
Use request.url instead.

Signed-off-by: Lorenz Bauer <[email protected]>
  • Loading branch information
lmb committed Feb 3, 2025
1 parent 7ef96d1 commit 4d6df6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ jobs:
});
// Extract the location header which contains the actual download URL
const download_url = response.headers.location;
const download_url = response.url;
if (!download_url) {
core.setFailed('Failed to get redirect URL from headers');
Expand Down

0 comments on commit 4d6df6f

Please sign in to comment.