Skip to content

Commit 35c6af3

Browse files
authored
fix(ci): use wget instead of curl for asset dl (#329)
1 parent 84360f6 commit 35c6af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "Wrong asset extension ${extension} in ${ASSET_URL}"
3030
exit 1
3131
else
32-
curl "${ASSET_URL}" > ${filename}
32+
wget -O ${filename} "${ASSET_URL}"
3333
ls -al ${filename}
3434
echo "VSIX_PATH=${filename}" >> $GITHUB_ENV
3535
fi

0 commit comments

Comments
 (0)