From e429a1f860678b2a4cbebf11baef46bce7ba6888 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Mon, 4 Oct 2021 13:12:51 +0530 Subject: [PATCH] fix: github workflow build script --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ff74c20..5317af8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,12 +41,12 @@ jobs: make clean && \ CGO_ENABLED=1 GOOS=windows CC=/usr/bin/x86_64-w64-mingw32-gcc make && \ mv build/server build/server.exe && \ - zip -vr authorizer-${VERSION}-windows-amd64.zip .env app build templates + zip -vr authorizer-${VERSION}-windows-amd64.zip .env app/build build templates - name: Package files for linux run: | make clean && \ CGO_ENABLED=1 make && \ - tar cvfz authorizer-${VERSION}-linux-amd64.tar.gz .env app build templates + tar cvfz authorizer-${VERSION}-linux-amd64.tar.gz .env app/build build templates - name: Upload assets run: | github-assets-uploader -f authorizer-${VERSION}-windows-amd64.zip -mediatype application/zip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION} && \