We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b050fc0 commit 6374a3fCopy full SHA for 6374a3f
.github/workflows/package.yml
@@ -58,6 +58,11 @@ jobs:
58
python -m pip install --upgrade pip
59
pip install .[tauri]
60
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
66
- name: Package using PyInstaller
67
run: |
68
chmod +x scripts/setup_tauri.sh
0 commit comments