Compare commits

...

2 Commits

Author SHA1 Message Date
Mohamed Belkamel 7f62492c72
Merge 8de5b7a226 into a04676d423 2024-04-23 09:56:56 +08:00
Mohamed Belkamel 8de5b7a226 ci: added multi-platform build for arm
like m1 apple silicon
2023-03-09 20:37:34 +01:00
1 changed files with 4 additions and 1 deletions

View File

@ -12,14 +12,17 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: excalidraw/excalidraw:latest
tags: excalidraw/excalidraw:latest, excalidraw/excalidraw:arm64
platforms: linux/amd64, linux/arm64