Skip to content

Commit

Permalink
Attempt server desktop app build
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Aug 6, 2024
1 parent f9183a1 commit 698f412
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build_desktop.yml
Original file line number Diff line number Diff line change
@@ -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/*
File renamed without changes.

0 comments on commit 698f412

Please sign in to comment.