ci: Enabled DOCKER_CLI_EXPERIMENTAL

This commit is contained in:
Geoff Bourne 2020-12-25 17:26:26 -06:00
parent d8733f46a5
commit be1e2715b1

View File

@ -11,6 +11,8 @@ on:
jobs:
release:
runs-on: ubuntu-20.04
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Checkout
uses: actions/checkout@v2
@ -22,11 +24,6 @@ jobs:
with:
go-version: 1.15
- name: Setup docker buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: Docker login
uses: docker/login-action@v1
with:
@ -38,6 +35,6 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --debug --rm-dist
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}