mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
ci: Publish docker images for all architectures under the same tag (no-changelog) (#4843)
This commit is contained in:
parent
2ad62bcd44
commit
38003476a0
3
.github/workflows/docker-images.yml
vendored
3
.github/workflows/docker-images.yml
vendored
|
@ -12,7 +12,6 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
docker-context: ['', '-debian']
|
||||
platforms: [linux/amd64, linux/arm64, linux/arm/v7]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -39,7 +38,7 @@ jobs:
|
|||
context: ./docker/images/n8n${{ matrix.docker-context }}
|
||||
build-args: |
|
||||
N8N_VERSION=${{ steps.vars.outputs.tag }}
|
||||
platforms: ${{ matrix.platforms }}
|
||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||
push: true
|
||||
tags: |
|
||||
${{ secrets.DOCKER_USERNAME }}/n8n:${{ steps.vars.outputs.tag }}${{ matrix.docker-context }}
|
||||
|
|
Loading…
Reference in a new issue