Skip to content

Commit 9b389fe

Browse files
committed
ci: Upload build artifacts in CI
This commit updates the `build-desktop.yml` GitHub Actions workflow to upload the generated application packages as build artifacts. - Adds an `actions/upload-artifact@v4` step. - Configures the step to upload the build output from `composeApp/build/compose/binaries/` for each matrix format (`.dmg`, `.msi`, `.deb`, etc.).
1 parent 29880d3 commit 9b389fe

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-desktop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ jobs:
4545
- name: Check build output
4646
run: ls -R composeApp/build/compose/binaries || true
4747

48+
- name: Upload artifact
49+
uses: actions/upload-artifact@v4
50+
with:
51+
name: build-${{ matrix.format }}
52+
path: composeApp/build/compose/binaries/**/${{ matrix.format }}/
53+
4854
- name: Upload to GitHub Release
4955
uses: softprops/action-gh-release@v2
5056
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)