Skip to content

Commit aefebf6

Browse files
Merge pull request #86 from lightningpixel/release/v0.3.1
Release/v0.3.1
2 parents 6b91aa7 + 8bc77de commit aefebf6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Build & Package (Windows)
5050
shell: bash
51-
run: npx electron-vite build && npx electron-builder --win --publish never
51+
run: npm run build && npx electron-builder --win --publish never
5252
env:
5353
CSC_IDENTITY_AUTO_DISCOVERY: false
5454

@@ -82,7 +82,7 @@ jobs:
8282
run: npm install
8383

8484
- name: Build & Package (Linux)
85-
run: npx electron-vite build && npx electron-builder --linux --publish never
85+
run: npm run build && npx electron-builder --linux --publish never
8686

8787
- name: Upload assets to release
8888
run: |

api/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async def lifespan(app: FastAPI):
2323

2424
app = FastAPI(
2525
title="Modly API",
26-
version="0.3.0",
26+
version="0.3.1",
2727
lifespan=lifespan,
2828
)
2929

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "modly",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Local AI-powered 3D mesh generation from images",
55
"main": "./out/main/index.js",
66
"author": "Modly",

0 commit comments

Comments
 (0)