From 38a0239f192eba4390290bfabd8a7d77c07b2b5a Mon Sep 17 00:00:00 2001 From: Revertron Date: Fri, 12 Jul 2024 13:50:20 +0200 Subject: [PATCH] Fixed CI for releases. --- .github/workflows/rust_parallel_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust_parallel_release.yml b/.github/workflows/rust_parallel_release.yml index 420ed2f..7c8e98a 100644 --- a/.github/workflows/rust_parallel_release.yml +++ b/.github/workflows/rust_parallel_release.yml @@ -76,8 +76,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | tag_name="${{ needs.get_version.outputs.project_version }}" - hub release edit $(find ./bin -type f -name "alfis-*" -printf "-a %p ") -m "" "$tag_name" - hub release edit $(find . -type f -name "*.deb" -printf "-a %p ") -m "" "$tag_name" + gh release upload "$tag_name" $(find ./bin -type f -name "alfis-*" -printf "-a %p ") + gh release upload "$tag_name" $(find . -type f -name "*.deb" -printf "-a %p ") build-and-upload-gui-zips: name: Create and upload builds