diff options
| author | itspooya <fallenangel201190@yahoo.com> | 2023-05-08 04:18:25 +0300 |
|---|---|---|
| committer | Ho3ein <ho3ein.sanaei@gmail.com> | 2023-05-08 09:34:47 +0300 |
| commit | f286c9a86a7628923078a1bd9dff65284536ff5b (patch) | |
| tree | ecd8c6dfc294cc75062ac55be31ceaef95580efe /.github/workflows/docker.yml | |
| parent | b4fd254c71b889e3227e33ae347f997ccd6d81a4 (diff) | |
Added ARM64
Diffstat (limited to '.github/workflows/docker.yml')
| -rw-r--r-- | .github/workflows/docker.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 48d1a223..053b6833 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -39,3 +39,13 @@ jobs: platforms: linux/amd64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + + - name: Build and push Docker image ARM64 + uses: docker/build-push-action@v4 + with: + context: . + file: .github/DockerfileARM + push: ${{ github.event_name != 'pull_request' }} + platforms: linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} |
