From bfbe815469ab7ac8dc846915d36cd63c75724276 Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Tue, 8 Nov 2022 10:14:56 -0800 Subject: [PATCH] cu: run make dist without go-dev container (#5003) --- .github/workflows/release.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ba16244dee..51f699fc9c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -162,10 +162,7 @@ jobs: git checkout -- . - name: Build Artifacts run: | - docker run --rm \ - -v ${GITHUB_WORKSPACE}:/go/src/github.com/Azure/aks-engine \ - -w /go/src/github.com/Azure/aks-engine \ - mcr.microsoft.com/oss/azcu/go-dev:v1.34.7 make dist + make dist - name: Remove local tag run: git tag -d ${{ env.RELEASE_VERSION }} - name: Publish Release