diff options
| author | Juan Calderon-Perez <835733+gaby@users.noreply.github.com> | 2023-03-26 10:48:42 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-26 14:48:42 +0000 | 
| commit | 8c2ec5e21d580c99e257c3cfddcf21fa53229aa4 (patch) | |
| tree | d5265f29940b974e78407af88248cbce3874de5b /.github/workflows | |
| parent | b391579db92f095666be1d979899b54ae0981573 (diff) | |
Add support for linux/arm64 platform during Docker Builds (#514)
* Add support for linux/arm64 platform
* Add platform to versioned builds
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yml | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d1a43ca..f70821d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -49,6 +49,7 @@ jobs:          with:            context: .            push: true +          platforms: linux/amd64,linux/arm64            tags: "ghcr.io/ggerganov/llama.cpp:${{ matrix.config.tag }}-${{ env.COMMIT_SHA }}"            file: ${{ matrix.config.dockerfile }} @@ -57,5 +58,6 @@ jobs:          with:            context: .            push: ${{ github.event_name == 'push' }} +          platforms: linux/amd64,linux/arm64            tags: "ghcr.io/ggerganov/llama.cpp:${{ matrix.config.tag }}"            file: ${{ matrix.config.dockerfile }}
\ No newline at end of file | 
