feat: update release workflow to use softprops/action-gh-release
All checks were successful
Build / build (pull_request) Successful in 5m38s
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:
parent
27240824f6
commit
3271253c2b
1 changed files with 3 additions and 4 deletions
7
.github/workflows/release.yaml
vendored
7
.github/workflows/release.yaml
vendored
|
@ -29,8 +29,7 @@ jobs:
|
||||||
- name: Gradle Release
|
- name: Gradle Release
|
||||||
run: ./gradlew composeApp:debug --no-daemon
|
run: ./gradlew composeApp:debug --no-daemon
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Release
|
||||||
uses: actions/upload-artifact@v4
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
name: app
|
files: composeApp/build/outputs/apk/debug/*.apk
|
||||||
path: composeApp/build/outputs/apk/debug/*.apk
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue