We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca84dc commit 723c303Copy full SHA for 723c303
.github/workflows/docker.yml
@@ -3,20 +3,11 @@ name: Publish Docker Image
3
on:
4
push:
5
tags:
6
- - '*'
+ - '*'
7
8
jobs:
9
- build-and-push-image:
10
- strategy:
11
- matrix:
12
- include:
13
- - platform: linux/amd64
14
- runner: ubuntu-24.04
15
- arch: amd64
16
- - platform: linux/arm64
17
- runner: ubuntu-24.04-arm
18
- arch: arm64
19
- runs-on: ${{ matrix.runner }}
+ build:
+ runs-on: ubuntu-24.04
20
permissions:
21
contents: read
22
packages: write
@@ -53,7 +44,7 @@ jobs:
53
44
uses: docker/build-push-action@v6
54
45
with:
55
46
context: .
56
- platforms: ${{ matrix.platform }}
47
+ platforms: linux/amd64,linux/arm64
57
48
push: true
58
49
tags: ${{ steps.meta.outputs.tags }}
59
50
labels: ${{ steps.meta.outputs.labels }}
0 commit comments