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 1b4ea72 commit 24f9bbbCopy full SHA for 24f9bbb
.github/workflows/release.yaml
@@ -109,10 +109,12 @@ jobs:
109
- name: Docker Login
110
run: echo ${{ secrets.DOCKER_HUB_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
111
- name: Build ${{ matrix.package }} package in Docker
112
+ # LIBXML2_STATIC is needed to avoid the dynamic linking issue on different distros
113
run: |
114
docker run --pull=always --rm \
115
-v $(pwd)/build-${{ matrix.package }}:/workspace \
116
-e COREPACK_INTEGRITY_KEYS=0 \
117
+ -e LIBXML2_STATIC=1 \
118
-e INCLUDE_GUI=1 \
119
yuezk/gpdev:${{ matrix.package }}-builder-tauri2
120
0 commit comments