2 Commits

Author SHA1 Message Date
Adrian Zürcher
33f7775800 .
Some checks failed
Build Quasar SPA and Go Backend for lightController / build (arm, 6, , linux, ubuntu-latest) (push) Successful in 6m30s
Build Quasar SPA and Go Backend for lightController / build (amd64, , linux, ubuntu-latest) (push) Successful in 6m39s
Build Quasar SPA and Go Backend for lightController / build (arm64, , linux, ubuntu-latest) (push) Successful in 4m30s
Build Quasar SPA and Go Backend for lightController / build (amd64, .exe, windows, windows-latest) (push) Has been cancelled
2025-08-11 10:52:31 +02:00
Adrian Zürcher
ac412bbffb fix npm for windows 2025-08-11 10:51:50 +02:00
2 changed files with 13 additions and 8 deletions

View File

@@ -7,24 +7,27 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: windows
- os: windows-latest
goos: windows
arch: amd64
ext: .exe
- os: linux
- os: ubuntu-latest
goos: linux
arch: amd64
ext: ""
- os: linux
- os: ubuntu-latest
goos: linux
arch: arm64
ext: ""
- os: linux
- os: ubuntu-latest
goos: linux
arch: arm
arm_version: 6
ext: ""
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
@@ -39,7 +42,9 @@ jobs:
run: npm install
- name: Install Quasar CLI
run: npm install -g @quasar/cli
run: |
npm cache clean --force
npm install -g @quasar/cli --force
- name: Build Quasar SPA
run: quasar build

View File

@@ -1,6 +1,6 @@
{
"name": "lightcontrol",
"version": "0.1.0",
"version": "0.1.2",
"description": "A Tecamino App",
"productName": "Light Control",
"author": "A. Zuercher",