Skip to content

Commit

Permalink
Merge pull request #8 from Syntist/build-on-ubuntu-20.04
Browse files Browse the repository at this point in the history
Build on Ubuntu 20.04
  • Loading branch information
Prof-S authored Sep 30, 2024
2 parents 6981314 + b602049 commit 0b26dbc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
create-release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}

Expand All @@ -37,7 +37,7 @@ jobs:
electron-release:
needs: create-release
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

defaults:
run:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

installer-release:
needs: create-release
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Checkout code
Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ cd electron-app
npm install
```

## To Run We can just run installer.sh
chmod 600 installer.sh
./installer.sh
## To Run We can just run Installer

Download installer.bin from release

Require Dependencies >= Ubuntu 20.04
```
sudo apt install build-essential fuse
```
chmod +x installer.bin
./installer.bin
```
2 changes: 1 addition & 1 deletion installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
MODEL_URL = "https://github.com/pcdslab/ProteoRift/releases/download/V1.0.0/specollate_model_weights.pt"


url = f'https://api.github.com/repos/syntist/MAESTRO/releases/latest'
url = f'https://api.github.com/repos/pcdslab/MAESTRO/releases/latest'
response = requests.get(url)
tag_name = response.json()["tag_name"]

Expand Down

0 comments on commit 0b26dbc

Please sign in to comment.