Skip to content

Commit e2ca06b

Browse files
committed
chore: Name nightly ci steps
1 parent 6efac65 commit e2ca06b

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.github/workflows/nightly.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,31 +57,38 @@ jobs:
5757
#VERSIONS
5858
name: ${{ matrix.name }}
5959
steps:
60-
- uses: actions/checkout@v4
61-
- uses: docker/setup-qemu-action@v3
62-
- uses: docker/setup-buildx-action@v3
63-
- uses: docker/login-action@v3
60+
- name: Checkout repository
61+
uses: actions/checkout@v4
62+
- name: Set up QEMU
63+
uses: docker/setup-qemu-action@v3
64+
- name: Set up Docker Buildx
65+
uses: docker/setup-buildx-action@v3
66+
- name: Login to GHCR
67+
uses: docker/login-action@v3
6468
if: github.event_name != 'pull_request'
6569
with:
6670
registry: ghcr.io
6771
username: rust-lang
6872
password: ${{ secrets.GITHUB_TOKEN }}
6973

70-
- uses: docker/login-action@v3
74+
- name: Login to Docker Hub
75+
uses: docker/login-action@v3
7176
if: github.event_name != 'pull_request'
7277
with:
7378
username: rustopsbot
7479
password: ${{ secrets.DOCKER_HUB_TOKEN }}
7580

76-
- id: meta
81+
- name: Docker Metadata
82+
id: meta
7783
uses: docker/metadata-action@v5
7884
with:
7985
images: |
8086
rustlang/rust
8187
ghcr.io/rust-lang/rust
8288
tags: ${{ matrix.tags }}
8389

84-
- uses: docker/build-push-action@v5
90+
- name: Build and push image
91+
uses: docker/build-push-action@v5
8592
with:
8693
context: ${{ matrix.context }}
8794
platforms: ${{ matrix.platforms }}

0 commit comments

Comments
 (0)