mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
fix: install deps in VM
This commit is contained in:
parent
0fc6f98909
commit
63a8c71511
1 changed files with 2 additions and 4 deletions
6
.github/workflows/appimage.yaml
vendored
6
.github/workflows/appimage.yaml
vendored
|
@ -20,9 +20,6 @@ jobs:
|
|||
with:
|
||||
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
|
||||
run: pwd && export LUNE_VERSION=0.7.5
|
||||
|
||||
|
@ -34,7 +31,8 @@ jobs:
|
|||
distro: ubuntu_latest
|
||||
dockerRunArgs: |
|
||||
--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 && \
|
||||
mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage
|
||||
|
||||
|
|
Loading…
Reference in a new issue