Skip to content

Commit e429a1f

Browse files
committed
fix: github workflow build script
1 parent 6819597 commit e429a1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
make clean && \
4242
CGO_ENABLED=1 GOOS=windows CC=/usr/bin/x86_64-w64-mingw32-gcc make && \
4343
mv build/server build/server.exe && \
44-
zip -vr authorizer-${VERSION}-windows-amd64.zip .env app build templates
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 && \
49-
tar cvfz authorizer-${VERSION}-linux-amd64.tar.gz .env app build templates
49+
tar cvfz authorizer-${VERSION}-linux-amd64.tar.gz .env app/build build templates
5050
- name: Upload assets
5151
run: |
5252
github-assets-uploader -f authorizer-${VERSION}-windows-amd64.zip -mediatype application/zip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION} && \

0 commit comments

Comments
 (0)