Skip to content

Commit 373e5af

Browse files
committed
minor text updates
1 parent 65ce170 commit 373e5af

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/docker-release.yaml renamed to .github/workflows/docker-integration-tests.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
name: Create docker images and push to ghcr.io
1+
name: Docker images for integration tests
22

33
on:
44
push:
55
branches:
66
- master
77
workflow_dispatch:
88

9+
env:
10+
PLATFORMS: "linux/amd64"
11+
912
jobs:
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 }}

0 commit comments

Comments
 (0)