mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-12-15 10:16:29 +00:00
fix build-linux job
This commit is contained in:
parent
241acd22c2
commit
73a228c4fa
1 changed files with 4 additions and 5 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
|
@ -75,11 +75,6 @@ jobs:
|
|||
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
registry:
|
||||
image: registry:2
|
||||
ports:
|
||||
- 5000:5000
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
|
|
@ -87,6 +82,10 @@ jobs:
|
|||
-
|
||||
name: Set up Docker
|
||||
uses: ./
|
||||
-
|
||||
name: Start registry
|
||||
run: |
|
||||
docker run -d -p 5000:5000 --restart=always --name registry registry:2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
|
|
|||
Loading…
Reference in a new issue