Skip to content

Commit c875381

Browse files
committed
feat: armv7lビルドジョブにDocker Buildxのセットアップステップを追加
1 parent 5d0cd04 commit c875381

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/publish-raspberrypi.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,15 @@ jobs:
6060
- name: Set up QEMU
6161
uses: docker/setup-qemu-action@v3
6262

63+
- name: Set up Docker Buildx
64+
uses: docker/setup-buildx-action@v3
65+
6366
# 2. arm32v7 Dockerコンテナ内でビルドと公開の全工程を実行
6467
- name: Build and Publish inside arm32v7 container
6568
env:
6669
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6770
run: |
68-
docker run --rm \
71+
docker run --rm --platform linux/arm/v7 \
6972
-v ${{ github.workspace }}:/workspace \
7073
-w /workspace \
7174
-e GH_TOKEN \

0 commit comments

Comments
 (0)