Skip to content

Commit 945fbe1

Browse files
authored
Merge pull request #15 from plagosus/docker-arm-support
Docker ARM Support
2 parents 06b2f82 + e47feba commit 945fbe1

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,18 @@ jobs:
5757
username: ${{ secrets.DOCKER_USERNAME }}
5858
password: ${{ secrets.DOCKER_PASSWORD }}
5959

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+
6066
- name: Build and Push Docker Image
6167
uses: docker/build-push-action@v5
6268
with:
6369
context: .
6470
push: true
71+
platforms: linux/amd64,linux/arm64
6572
tags: |
6673
${{ secrets.DOCKER_USERNAME }}/rack-planner:${{ env.VERSION }}
6774
${{ secrets.DOCKER_USERNAME }}/rack-planner:latest

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rack-planner",
33
"private": true,
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -36,4 +36,4 @@
3636
"typescript-eslint": "^8.46.4",
3737
"vite": "^7.2.4"
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)