File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,19 @@ jobs:
3636 run : echo VERSION=$(basename ${GITHUB_REF}) >> ${GITHUB_ENV}
3737 - name : Copy .env file
3838 run : mv .env.sample .env
39- - name : Package files for windows
40- run : |
41- make clean && \
42- CGO_ENABLED=1 GOOS=windows CC=/usr/bin/x86_64-w64-mingw32-gcc make && \
43- mv build/server build/server.exe && \
44- zip -vr authorizer-${VERSION}-windows-amd64.zip .env app/build build templates
39+ # - name: Package files for windows
40+ # run: |
41+ # make clean && \
42+ # CGO_ENABLED=1 GOOS=windows CC=/usr/bin/x86_64-w64-mingw32-gcc make && \
43+ # mv build/server build/server.exe && \
44+ # zip -vr authorizer-${VERSION}-windows-amd64.zip .env app/build build templates
4545 - name : Package files for linux
4646 run : |
4747 make clean && \
4848 CGO_ENABLED=1 make && \
4949 tar cvfz authorizer-${VERSION}-linux-amd64.tar.gz .env app/build build templates
5050 - name : Upload assets
5151 run : |
52- github-assets-uploader -f authorizer-${VERSION}-windows-amd64.zip -mediatype application/zip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION} && \
5352 github-assets-uploader -f authorizer-${VERSION}-linux-amd64.tar.gz -mediatype application/gzip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION}
5453 - name : Log in to Docker Hub
5554 uses : docker/login-action@v1
You can’t perform that action at this time.
0 commit comments