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 0c496b3 commit ceeda52Copy full SHA for ceeda52
.github/workflows/main.yml
@@ -83,7 +83,9 @@ jobs:
83
- name: Set up QEMU
84
uses: docker/setup-qemu-action@master
85
with:
86
- platforms: amd64,arm,arm64
+ platforms: amd64,arm64
87
+ # ignore arm/v7 (32bit) because unsupported by "cryptography" dep of
88
+ # Ansible and demand seems unlikely
89
90
- name: Set up Docker BuildKit
91
id: buildx
@@ -100,6 +102,6 @@ jobs:
100
102
101
103
context: . # build context is workspace so we can copy artifacts from ./dist/
104
builder: ${{ steps.buildx.outputs.name }}
- platforms: linux/amd64,linux/arm/v7,linux/arm64
105
+ platforms: linux/amd64,linux/arm64
106
push: true
107
tags: ${{ steps.compose_tags.outputs.container_tags }}
0 commit comments