24 lines
805 B
Bash
24 lines
805 B
Bash
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
ARCH=$(uname -m)
|
|
export ARCH
|
|
export OUTPATH=./dist
|
|
export ADD_HOOKS="self-updater.hook"
|
|
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
|
|
export ICON=https://raw.githubusercontent.com/stoatchat/assets/f106946659af67ad4f008588ac51570029b2fd47/desktop/icon.png
|
|
export DESKTOP=https://raw.githubusercontent.com/stoatchat/for-desktop/refs/heads/main/chat.stoat.StoatDesktop.desktop
|
|
export DEPLOY_PIPEWIRE=1
|
|
|
|
# Deploy dependencies
|
|
quick-sharun ./AppDir/bin/*
|
|
|
|
# Additional changes can be done in between here
|
|
|
|
# Turn AppDir into AppImage
|
|
quick-sharun --make-appimage
|
|
|
|
# Test the app for 12 seconds, if the test fails due to the app
|
|
# having issues running in the CI use --simple-test instead
|
|
quick-sharun --test ./dist/*.AppImage |