fix(actions:) mount build dir into docker

This commit is contained in:
Erica Marigold 2023-08-03 18:39:37 +05:30 committed by GitHub
parent a8f100ac28
commit 518f645f98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,11 @@ jobs:
with:
arch: ${{ matrix.arch }}
distro: ubuntu_latest
run: ./pkg2appimage/pkg2appimage lune.yml && mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage
dockerRunArgs: |
--volume "${PWD}:/build"
run: cd /build && \
./pkg2appimage/pkg2appimage lune.yml && \
mv ./lune/lune-$(uname -m).AppImage ./lune-$LUNE_VERSION-$(uname -m).AppImage