diff --git a/.github/workflows/build_desktop.yml b/.github/workflows/build_desktop.yml new file mode 100644 index 0000000..e824bc1 --- /dev/null +++ b/.github/workflows/build_desktop.yml @@ -0,0 +1,32 @@ +on: + push: + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ['windows-latest', 'ubuntu-latest', 'macos-latest'] + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3.9 + - uses: conda-incubator/setup-miniconda@v3 + with: + auto-update-conda: true + python-version: 3.9 + environment-file: environment.yml + auto-activate-base: false + activate-environment: fune + + - run: | + conda info + conda list + + - run: sh ./desktop/build_desktop_app.sh + - uses: actions/upload-artifact@v2 + with: + path: dist/* \ No newline at end of file diff --git a/environment.yaml b/environment.yml similarity index 100% rename from environment.yaml rename to environment.yml