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} && \