feat: update release workflow to use softprops/action-gh-release
All checks were successful
Build / build (pull_request) Successful in 5m38s

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`.
This commit is contained in:
Ben Martin 2025-01-21 10:16:00 +00:00
parent 27240824f6
commit 3271253c2b
No known key found for this signature in database
GPG key ID: 11936493893207E4

View file

@ -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