fix: install deps in VM

This commit is contained in:
Erica Marigold 2023-08-03 18:45:45 +05:30 committed by GitHub
parent 0fc6f98909
commit 63a8c71511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,9 +20,6 @@ jobs:
with: with:
submodules: true submodules: true
- name: Install dependencies
run: sudo apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2
- name: Set working directory - name: Set working directory
run: pwd && export LUNE_VERSION=0.7.5 run: pwd && export LUNE_VERSION=0.7.5
@ -34,7 +31,8 @@ jobs:
distro: ubuntu_latest distro: ubuntu_latest
dockerRunArgs: | dockerRunArgs: |
--volume "${PWD}:/build" --volume "${PWD}:/build"
run: cd /build && \ run: sudo apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 && \
cd /build && \
./pkg2appimage/pkg2appimage lune.yml && \ ./pkg2appimage/pkg2appimage lune.yml && \
mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage