Setup docker cli on gha

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
This commit is contained in:
Ulysses Souza 2021-01-07 15:44:10 -03:00
parent d12ffe92a4
commit bc787a1a70
5 changed files with 24 additions and 0 deletions

View File

@ -34,6 +34,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -45,6 +45,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -35,6 +35,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -14,6 +14,11 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2

View File

@ -35,6 +35,10 @@ jobs:
go-version: 1.15
id: go
- name: Setup docker CLI
run: |
docker version
- name: Checkout code into the Go module directory
uses: actions/checkout@v2