From 8f29532954aa345363b3071d37bf256c7018bdec Mon Sep 17 00:00:00 2001 From: Pavel Polyakov Date: Tue, 28 Nov 2023 00:32:44 -0800 Subject: [PATCH] [MWP-387] patch: update gh cli command (#389) --- .github/workflows/create_release_with_packages.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_release_with_packages.yml b/.github/workflows/create_release_with_packages.yml index 935893d..ebbe902 100644 --- a/.github/workflows/create_release_with_packages.yml +++ b/.github/workflows/create_release_with_packages.yml @@ -31,6 +31,7 @@ jobs: RELEASE_VERSION: ${{ steps.vars.outputs.tag }} run: | cd build - files="$(find ../ -type f -name "*.curapackage" -printf "-a %p ")" - gh release edit $files -m "" "$RELEASE_VERSION" + for f in $(find ../ -type f -name "*.curapackage"); do + gh release upload $RELEASE_VERSION $f --clobber + done \ No newline at end of file