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: jobs:
build: build:
runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
include: include:
- os: windows - os: windows-latest
goos: windows
arch: amd64 arch: amd64
ext: .exe ext: .exe
- os: linux - os: ubuntu-latest
goos: linux
arch: amd64 arch: amd64
ext: "" ext: ""
- os: linux - os: ubuntu-latest
goos: linux
arch: arm64 arch: arm64
ext: "" ext: ""
- os: linux - os: ubuntu-latest
goos: linux
arch: arm arch: arm
arm_version: 6 arm_version: 6
ext: "" ext: ""
runs-on: ${{ matrix.os }}
steps: steps:
- name: Checkout repository - name: Checkout repository
@@ -39,7 +42,9 @@ jobs:
run: npm install run: npm install
- name: Install Quasar CLI - 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 - name: Build Quasar SPA
run: quasar build run: quasar build

View File

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