[appimage] Auf neuen Debian-Runner umstellen
Some checks failed
Build AppImage / build (push) Failing after 1m42s
Some checks failed
Build AppImage / build (push) Failing after 1m42s
- runs-on: docker -> appimage (16-Forgejo-Runner-AppImage) - APPIMAGE_EXTRACT_AND_RUN aus Workflow raus (jetzt im Runner-ENV) - Erster echter Test des dedizierten AppImage-Runners
This commit is contained in:
parent
467a2c5e8f
commit
65c868c2ff
1 changed files with 2 additions and 5 deletions
|
|
@ -13,7 +13,8 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
# Laeuft auf dem Debian-Runner (16-Forgejo-Runner-AppImage) - glibc fuer linuxdeploy
|
||||||
|
runs-on: appimage
|
||||||
if: contains(github.event.head_commit.message, '[appimage]') || startsWith(github.ref, 'refs/tags/v')
|
if: contains(github.event.head_commit.message, '[appimage]') || startsWith(github.ref, 'refs/tags/v')
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -31,10 +32,6 @@ jobs:
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: Build Tauri App
|
- name: Build Tauri App
|
||||||
env:
|
|
||||||
# linuxdeploy/AppRun sind glibc-AppImages - auf Alpine/musl via FUSE
|
|
||||||
# nicht lauffaehig. EXTRACT_AND_RUN=1 extrahiert + startet via gcompat.
|
|
||||||
APPIMAGE_EXTRACT_AND_RUN: "1"
|
|
||||||
run: |
|
run: |
|
||||||
npm run tauri build -- --bundles appimage
|
npm run tauri build -- --bundles appimage
|
||||||
ls -la src-tauri/target/release/bundle/appimage/
|
ls -la src-tauri/target/release/bundle/appimage/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue