Skip to content

Commit a009142

Browse files
committed
Change names in GitHub action
1 parent 92452f5 commit a009142

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/docker-image.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
name: Docker Release
2+
name: Push Release to Docker Hub
33

44
on:
55
release:
66
types: [published]
77

88
env:
99
DOCKER_USER: samueltallet
10-
DOCKER_REPO: mongodb-php-gui
10+
DOCKER_REPOSITORY: mongodb-php-gui
1111

1212
jobs:
1313

@@ -18,26 +18,26 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v3
2020

21-
- name: qemu setup
21+
- name: Setup QEMU
2222
uses: docker/setup-qemu-action@v2
2323

24-
- name: docker buildx
24+
- name: Setup Docker Buildx
2525
uses: docker/setup-buildx-action@v2
2626
with:
2727
config-inline: |
2828
[worker.oci]
2929
max-parallelism = 2
3030
31-
- name: docker login
31+
- name: Login to Docker Hub
3232
uses: docker/login-action@v2
3333
with:
3434
username: ${{ env.DOCKER_USER }}
3535
password: ${{ secrets.DOCKER_PASSWORD }}
3636

37-
- name: Build and Push
37+
- name: Build and Push to Docker Hub
3838
uses: docker/build-push-action@v3
3939
with:
4040
context: .
4141
platforms: linux/amd64,linux/arm64,linux/arm/v7
4242
push: true
43-
tags: ${{ env.DOCKER_USER }}/${{ env.DOCKER_REPO }}:latest
43+
tags: ${{ env.DOCKER_USER }}/${{ env.DOCKER_REPOSITORY }}:latest

0 commit comments

Comments
 (0)