mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
fix(actions:) mount build dir into docker
This commit is contained in:
parent
a8f100ac28
commit
518f645f98
1 changed files with 5 additions and 1 deletions
6
.github/workflows/appimage.yaml
vendored
6
.github/workflows/appimage.yaml
vendored
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue