mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
fix: use uname instead of matrix for arch detection
This commit is contained in:
parent
d0e36f1db6
commit
562b41b3ef
1 changed files with 2 additions and 2 deletions
4
.github/workflows/appimage.yaml
vendored
4
.github/workflows/appimage.yaml
vendored
|
@ -33,12 +33,12 @@ jobs:
|
||||||
--volume "./package/appimage:/build" --privileged
|
--volume "./package/appimage:/build" --privileged
|
||||||
run: |
|
run: |
|
||||||
export LUNE_VERSION=0.7.5
|
export LUNE_VERSION=0.7.5
|
||||||
export SYSTEM_ARCH=${{ matrix.arch }}
|
echo "Running build on debian linux $(uname -m)"
|
||||||
|
|
||||||
apt update
|
apt update
|
||||||
apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y
|
apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y
|
||||||
|
|
||||||
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage -O /usr/bin/appimagetool
|
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$(uname -m).AppImage -O /usr/bin/appimagetool
|
||||||
chmod a+x /usr/bin/appimagetool
|
chmod a+x /usr/bin/appimagetool
|
||||||
|
|
||||||
cd /build/lune.AppDir
|
cd /build/lune.AppDir
|
||||||
|
|
Loading…
Reference in a new issue