From 85e90c89a708fab3ec9e8cee7698764299db44e9 Mon Sep 17 00:00:00 2001 From: nleach999 Date: Fri, 1 Apr 2022 15:01:31 -0500 Subject: [PATCH] creating release workflows --- .github/workflows/publish-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-build.yml b/.github/workflows/publish-build.yml index 534a6319..dfaafbb6 100644 --- a/.github/workflows/publish-build.yml +++ b/.github/workflows/publish-build.yml @@ -66,7 +66,8 @@ jobs: - name: Build and Push Docker Image run: | #docker build -f Dockerfile -t $DOCKER_REPO:v${{ inputs.tag }} artifacts/linux-x64 - docker build -f Dockerfile -t cxanalytix:${{ inputs.tag }} artifacts/linux-x64 + docker -D -l debug build -f Dockerfile -t cxanalytix:${{ inputs.tag }} artifacts/linux-x64 + echo Exit code: $? [ ${{ inputs.prerelease }} = false ] && docker tag $DOCKER_REPO:v${{ inputs.tag }} $DOCKER_REPO:latest #docker push $DOCKER_REPO:v${{ inputs.tag }} [ ${{ inputs.prerelease }} = false ] && docker push $DOCKER_REPO:latest