File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments