We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0cd04 commit c875381Copy full SHA for c875381
1 file changed
.github/workflows/publish-raspberrypi.yml
@@ -60,12 +60,15 @@ jobs:
60
- name: Set up QEMU
61
uses: docker/setup-qemu-action@v3
62
63
+ - name: Set up Docker Buildx
64
+ uses: docker/setup-buildx-action@v3
65
+
66
# 2. arm32v7 Dockerコンテナ内でビルドと公開の全工程を実行
67
- name: Build and Publish inside arm32v7 container
68
env:
69
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70
run: |
- docker run --rm \
71
+ docker run --rm --platform linux/arm/v7 \
72
-v ${{ github.workspace }}:/workspace \
73
-w /workspace \
74
-e GH_TOKEN \
0 commit comments