Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Build default binary using manylinux_2_31
run: |
docker run --rm -v ${{ github.workspace }}:/io quay.io/pypa/manylinux_2_31_x86_64 bash -c "
docker run --rm -v ${{ github.workspace }}:/io quay.io/pypa/manylinux_2_31 bash -c "
cd /io
mkdir -p ./app/bundled_app/linux ./app/build/linux

Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Build cloud binary using manylinux_2_31
run: |
docker run --rm -v ${{ github.workspace }}:/io quay.io/pypa/manylinux_2_31_x86_64 bash -c "
docker run --rm -v ${{ github.workspace }}:/io quay.io/pypa/manylinux_2_31 bash -c "
cd /io

# Poetry should already be installed from previous step
Expand Down
Loading