Skip to content

Commit e3bef31

Browse files
committed
Rename Docker setup composite action
1 parent d9cb95c commit e3bef31

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/setup-docker-publish/action.yml renamed to .github/actions/setup-docker/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Set up Docker publish"
1+
name: "Set up Docker"
22
description: >-
33
Set up QEMU + Docker Buildx and authenticate to Docker Hub for multi-arch
44
image builds. Centralizes the QEMU/Buildx/login trio used by release,

.github/workflows/docker-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "Version ${INPUT_VERSION} found on PyPI - proceeding with release"
3030
3131
- name: Set up Docker publishing
32-
uses: ./.github/actions/setup-docker-publish
32+
uses: ./.github/actions/setup-docker
3333
with:
3434
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
3535
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/pr-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
144144
- name: Set up Docker publishing
145145
if: steps.verify_package.outputs.success == 'true'
146-
uses: ./.github/actions/setup-docker-publish
146+
uses: ./.github/actions/setup-docker
147147
with:
148148
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
149149
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
7070

7171
- name: Set up Docker publishing
72-
uses: ./.github/actions/setup-docker-publish
72+
uses: ./.github/actions/setup-docker
7373
with:
7474
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
7575
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)