Skip to content

Commit

Permalink
Fix build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Jun 9, 2023
1 parent 4f99c87 commit be5ab13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
- name: configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
- name: build
run: make -C ${{github.workspace}}/build -j`nproc` install DESTDIR=AppDir
run: |
cmake --build ${{github.workspace}}/build
cmake --install ${{github.workspace}}/build --prefix AppDir
- name: Build AppImage
uses: AppImageCrafters/build-appimage-action@master
env:
Expand Down

0 comments on commit be5ab13

Please sign in to comment.