From 35f115cfd9d1b55e93efb57d0cbc9c40704fb992 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 15 Dec 2021 10:23:55 -0700 Subject: [PATCH] fix: add --clobber to release-github-assets script --- ci/build/release-github-assets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build/release-github-assets.sh b/ci/build/release-github-assets.sh index 43083e1373d2..29f27566816a 100755 --- a/ci/build/release-github-assets.sh +++ b/ci/build/release-github-assets.sh @@ -13,7 +13,7 @@ main() { download_artifact release-packages ./release-packages local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.deb,.rpm}) - EDITOR=true gh release upload "v$VERSION" "${assets[@]}" + EDITOR=true gh release upload "v$VERSION" "${assets[@]}" --clobber } main "$@"