Skip to content

Commit

Permalink
uname -m ?!
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair committed Nov 12, 2024
1 parent 04bc7fe commit d2ad170
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,12 @@ jobs:
lfs: true
submodules: ${{ inputs.submodules }}
ref: ${{ inputs.checkout_ref }}
- name: Get machine arch
id: uname_m
run: |
echo "uname_m=$(uname -m)" >> "$GITHUB_OUTPUT"
- name: Set up QEMU
if: ${{ matrix.CIBW_ARCHS == 'aarch64' }}
if: ${{ matrix.CIBW_ARCHS != steps.uname_m.outputs.uname_m }}
uses: docker/setup-qemu-action@v3
with:
platforms: all
Expand Down

0 comments on commit d2ad170

Please sign in to comment.