We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce9b8a commit 23df528Copy full SHA for 23df528
.github/workflows/build_wheels_linux_incode.yml
@@ -9,7 +9,8 @@ jobs:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
12
- python-version: [ '3.10', '3.11' ]
+ python-version: [ '3.10' ]
13
+ platform: [ 'linux/amd64', 'linux/arm64' ]
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v3
@@ -25,7 +26,7 @@ jobs:
25
26
uses: docker/build-push-action@v4
27
with:
28
file: Dockerfile.incode_build
- platforms: linux/amd64
29
+ platforms: ${{ matrix.platform }}
30
push: false
31
context: .
32
cache-from: type=gha
0 commit comments