Skip to content

Commit

Permalink
missing env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgambe33 committed Jan 8, 2025
1 parent e19fb68 commit 14569bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build
working-directory: ${{ env.SOURCE_DIR }}/build
run: |
cmake -DCMAKE_PREFIX_PATH=${{ runner.temp }}/Qt/${{ env.QT_VERSION }}/gcc_64 -DCMAKE_BUILD_TYPE=Release ${{ env.SOURCE_DIR }}
cmake -DCMAKE_PREFIX_PATH=${{ runner.temp }}/Qt/6.8.1/gcc_64 -DCMAKE_BUILD_TYPE=Release ${{ env.SOURCE_DIR }}
cmake --build . --config Release
cd release
Expand All @@ -55,7 +55,7 @@ jobs:
run: |
wget -O deploy.AppImage https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
chmod a+x deploy.AppImage
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ runner.temp }}/Qt/${{ env.QT_VERSION }}/gcc_64/lib/
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ runner.temp }}/Qt/6.8.1/gcc_64/lib/
./deploy.AppImage wtplotter -no-translations -appimage
mv *.AppImage ${{ env.ARTIFACT }}
Expand Down

0 comments on commit 14569bc

Please sign in to comment.