From 8ed4b29600cc51a02accae123aa71a70d8a2f434 Mon Sep 17 00:00:00 2001 From: pablochacin Date: Tue, 17 Oct 2023 14:58:41 +0200 Subject: [PATCH] Replace hub in ci workflows (#353) Signed-off-by: Pablo Chacin --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4b65ab8b..aa78c7e0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -220,7 +220,7 @@ jobs: MESSAGE="$(cat ./releases/${VERSION}.md)" assets=() for asset in ./dist/*; do - assets+=("-a" "$asset") + assets+=("$asset") done - hub release create "${assets[@]}" -m "$VERSION" -m "$MESSAGE" "$VERSION" - + gh release create "$VERSION" --target "$VERSION" -F "./releases/${VERSION}.md" "${assets[@]}" +