Skip to content

Commit dbb9aee

Browse files
committed
refactor: Update artifact paths in release workflow
Adjusts the file paths in the `build-desktop.yml` GitHub Actions workflow to correctly locate the native distribution artifacts (`.dmg`, `.msi`, `.rpm`, `.deb`). The paths have been changed from `composeApp/build/compose/binaries/main/...` to `artifacts/build-.../` to match the output directory where the build artifacts are now stored.
1 parent 3e80811 commit dbb9aee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-desktop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ jobs:
6666
uses: softprops/action-gh-release@v2
6767
with:
6868
files: |
69-
composeApp/build/compose/binaries/main/dmg/*.dmg
70-
composeApp/build/compose/binaries/main/msi/*.msi
71-
composeApp/build/compose/binaries/main/rpm/*.rpm
72-
composeApp/build/compose/binaries/main/deb/*.deb
69+
artifacts/build-dmg/*.dmg
70+
artifacts/build-msi/*.msi
71+
artifacts/build-rpm/*.rpm
72+
artifacts/build-deb/*.deb
7373
draft: true
7474
tag_name: ${{ github.ref_name }}
7575
env:

0 commit comments

Comments
 (0)