Skip to content

Commit 6db8645

Browse files
committed
Release v0.0.12
1 parent ce9c631 commit 6db8645

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/release-electron.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,10 @@ jobs:
339339
340340
# Copy necessary files
341341
cp -r benchmesh-serial-service dist-web/benchmesh/
342-
cp -r .node-red dist-web/benchmesh/
342+
# Copy .node-red if it exists (created on first run)
343+
if [ -d .node-red ]; then
344+
cp -r .node-red dist-web/benchmesh/
345+
fi
343346
cp start.sh dist-web/benchmesh/
344347
cp package.json dist-web/benchmesh/
345348
cp package-lock.json dist-web/benchmesh/

benchmesh-serial-service/frontend/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

benchmesh-serial-service/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "benchmesh-ui",
33
"private": true,
4-
"version": "0.0.11",
4+
"version": "0.0.12",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "benchmesh-electron",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "BenchMesh Electron Wrapper - Desktop application for instrument control and automation",
55
"homepage": "https://github.com/yourusername/BenchMesh",
66
"author": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "benchmesh",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "BenchMesh - Lab Instrument Control System",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)