From 6e9e411542b77dd11be990d4db093984fc4205b1 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 15 Dec 2021 13:11:35 -0700 Subject: [PATCH] fix: add --clobber to release-github-assets script (#4628) Co-authored-by: Asher --- 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 43083e13..29f27566 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 "$@"