diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b995a5f..d745356 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,4 +1,4 @@ -name: Build Desktop App (Linux - deb) +name: Build Desktop App (Linux .deb) on: # push: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index da77b7f..9909a9f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,9 +1,9 @@ -name: Build Desktop App (Windows) +name: Build Desktop App (Windows .msi) on: - push: - branches: - - master + # push: + # branches: + # - master # pull_request: # branches: # - master @@ -57,4 +57,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: windows - path: dist/bundle/msi/ + path: dist/bundle/msi/**/*.msi diff --git a/README.md b/README.md index fb9ba97..32bfb1a 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,8 @@ DATABASE_URL ### Desktop -> Github actions for the Linux and MacOS platforms are not yet functioning since `dx bundle` fails with various errors. +> The Github action for MacOS is not yet implemented. Linux is barely functioning since the built bundle fails with various errors (e.g the installed .deb package searches assets in the folder where you call it and not globally). Windows is the only platform that works correctly for now. - For Windows you can configure the `.github/workflows/windows.yaml` workflow to build and upload the `.msi` installer in the action artifacts on every push to the `master` branch or manually with the `workflow_dispatch` event. +- For Linux you can configure the `.github/workflows/linux.yaml` workflow to build and upload the `.deb` package along with the dist folder in the action artifacts on every push to the `master` branch or manually with the `workflow_dispatch` event. - Currently `dx bundle` is being actively developed and is not yet ready for production use, so you should use `dx build` if bundling fails on other platforms (this is not good since you need attach the entire `dist` folder to your release build).