Skip to content

Commit 6374a3f

Browse files
committed
fix: fix libstdc++ for ubuntu release builds
1 parent b050fc0 commit 6374a3f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ jobs:
5858
python -m pip install --upgrade pip
5959
pip install .[tauri]
6060
shell: bash -l {0}
61+
- name: Fix libstdc++ (ubuntu only)
62+
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
63+
run: |
64+
sudo apt-get update
65+
sudo apt-get install -y libstdc++6
6166
- name: Package using PyInstaller
6267
run: |
6368
chmod +x scripts/setup_tauri.sh

0 commit comments

Comments
 (0)