File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1- name : Create docker images and push to ghcr.io
1+ name : Docker images for integration tests
22
33on :
44 push :
55 branches :
66 - master
77 workflow_dispatch :
88
9+ env :
10+ PLATFORMS : " linux/amd64"
11+
912jobs :
1013 docker :
11- name : Push Docker image
14+ name : Build and push Docker image
1215 runs-on : ubuntu-latest
1316 strategy :
1417 fail-fast : false
@@ -54,12 +57,13 @@ jobs:
5457 images : |
5558 ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}
5659
57- - name : Build and Push Tag
60+ - name : Build and push tag
5861 uses : docker/build-push-action@v5
5962 with :
6063 context : .
6164 file : ${{ matrix.dockerfile }}
6265 push : true
63- tags : ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest
66+ tags : |
67+ ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest
6468 labels : ${{ steps.meta.outputs.labels }}
65- platforms : linux/amd64
69+ platforms : ${{ env.PLATFORMS }}
You can’t perform that action at this time.
0 commit comments