From c0fcb40c91a93c7304712abae5d90d5c1dc28404 Mon Sep 17 00:00:00 2001 From: Tanmoy Sarkar <57363826+tanmoysrt@users.noreply.github.com> Date: Wed, 27 Mar 2024 20:42:36 +0530 Subject: [PATCH] feat: update workflow --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5a2d8c..bd2cc84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,11 +91,11 @@ jobs: echo "Built: $i" dpkg --info $i done - - name: Upload Debian Packages to Artifacts - uses: actions/upload-artifact@v4 + - name: Release + uses: softprops/action-gh-release@v2 with: - name: debian-packages - path: ~/deb_builds/*.deb + files: ~/deb_builds/*.deb + tag_name: ${{ env.release_tag }} rpm-packager: name: Package and Release RPM Binary runs-on: ubuntu-latest @@ -140,8 +140,8 @@ jobs: echo "Built: $i" rpm -qip $i done - - name: Upload RPM Packages to Artifacts - uses: actions/upload-artifact@v4 + - name: Release + uses: softprops/action-gh-release@v2 with: - name: rpm-packages - path: ~/*.rpm + files: ~/*.rpm + tag_name: ${{ env.release_tag }} \ No newline at end of file