Compare commits

..

No commits in common. "96d544e3148757d5b63bf80e7657fb725c81e07f" and "a17fe070b7d8bd00f55fd183aeb32cd1e35f2be4" have entirely different histories.

3 changed files with 991 additions and 721 deletions

View File

@ -1,58 +0,0 @@
name: Viewer build
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
strategy:
matrix:
#os: [ ubuntu-latest, windows-latest, macos-latest ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
working-directory: ./Viewer
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
- if: ${{ matrix.os == 'windows-latest' }}
run: |
choco install wget zip
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
# fixes an issue when running npx sandboxing...
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Check build dependencies
run: make check
- name: Pre-Build
run: make clean-all dev
- name: Build
run: make dist
- name: Release
env:
GH_TOKEN: ${{ github.token }}
run: |
# XXX need to create if this does not exist...
#gh release create release-latest -t "TEST"
gh release upload release-latest ./dist/*

1650
Viewer/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -59,8 +59,8 @@
"pica": "*"
},
"devDependencies": {
"@electron/asar": "^3.0.1",
"@electron/rebuild": "*",
"asar": "^3.0.1",
"electron-rebuild": "*",
"rcedit": "^3.0.0"
},
"-devDependencies": {},