We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c948e3 commit 72191a4Copy full SHA for 72191a4
.github/workflows/release.yaml
@@ -32,8 +32,8 @@ jobs:
32
- name: Run Pyinstaller
33
run: |
34
poetry run pyinstaller keyboard.spec
35
- version=$(ldd --version | head -n 1 | cut -d ' ' -f 4)
36
- pyversion=$(python --version 2>&1 | cut -d ' ' -f 2)
+ version=$(ldd --version | head -n 1 | awk '{print $NF}')
+ pyversion=$(python --version 2>&1 | awk '{print $2}')
37
mv ./dist/keyboard ./dist/virtual-keyboard-py$pyversion-glib$version-x86_64
38
39
- name: Store Dist
0 commit comments