Skip to content

Commit

Permalink
fix(docker): don't separate platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
thib3113 committed Nov 12, 2023
1 parent c40b0bb commit 95a82cc
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ on:

jobs:
docker:
strategy:
matrix:
arch: [linux/amd64, linux/arm64]
runs-on: ubuntu-latest
name: docker build arch ${{ matrix.arch }}
steps:
- name: Docker meta
id: meta
Expand Down Expand Up @@ -50,10 +46,9 @@ jobs:
uses: docker/build-push-action@v5
with:
file: ./docker/Dockerfile
platforms: ${{ matrix.arch }}
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
-
name: Image digest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 95a82cc

Please sign in to comment.