Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengyangliu committed Jul 12, 2024
1 parent dd97603 commit e536de2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/sync_release_to_gitee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ jobs:
return response.data;
- name: Download release assets
id: download_assets
run: |
const { exec } = require("child_process");
echo ${{ steps.get_release_info.outputs.result }}
echo ${{ toJson(steps.get_release_info.outputs.result) }}
echo ${{ toJson(steps.get_release_info.outputs.result).assets }}
const assets = ${{ toJson(steps.get_release_info.outputs.result).assets }};
const downloadUrls = assets.map(asset => asset.browser_download_url);
for (const url of downloadUrls) {
Expand Down

0 comments on commit e536de2

Please sign in to comment.