From 3271253c2b0f5cf2c4dea6388dd34801ec91a21b Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Tue, 21 Jan 2025 10:16:00 +0000 Subject: [PATCH] feat: update release workflow to use `softprops/action-gh-release` This commit updates the release workflow to use the `softprops/action-gh-release@v2` action for releasing artifacts. This change replaces the previous use of `actions/upload-artifact@v4`. - The workflow now uses the `files` parameter instead of `name` and `path` for uploading artifacts. - The change affects `release.yaml`. --- .github/workflows/release.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 042d3ad..3f5917e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,8 +29,7 @@ jobs: - name: Gradle Release run: ./gradlew composeApp:debug --no-daemon - - name: Upload artifacts - uses: actions/upload-artifact@v4 + - name: Release + uses: softprops/action-gh-release@v2 with: - name: app - path: composeApp/build/outputs/apk/debug/*.apk + files: composeApp/build/outputs/apk/debug/*.apk