Skip to content

Commit fb407b1

Browse files
committed
Of course I know the API of my own build script, why do you ask?
1 parent 5735035 commit fb407b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release_version.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
- name: Compile all artefacts
2121
run: |
2222
go run build.go -version "${{ github.ref }}"
23-
go run build.go -quick -version "${{ github.ref }}" -goarch=amd64 -goos=linux
23+
go run build.go -quick -version "${{ github.ref }}" -GOARCH=amd64 -GOOS=linux
2424
mv build/chesseract build/chesseract-linux-x64
25-
go run build.go -quick -version "${{ github.ref }}" -goarch=arm64 -goos=linux
25+
go run build.go -quick -version "${{ github.ref }}" -GOARCH=arm64 -GOOS=linux
2626
mv build/chesseract build/chesseract-linux-rpi
27-
go run build.go -quick -version "${{ github.ref }}" -goarch=amd64 -goos=darwin
27+
go run build.go -quick -version "${{ github.ref }}" -GOARCH=amd64 -GOOS=darwin
2828
mv build/chesseract build/chesseract-darwin-amd64
29-
go run build.go -quick -version "${{ github.ref }}" -goarch=amd64 -goos=windows
29+
go run build.go -quick -version "${{ github.ref }}" -GOARCH=amd64 -GOOS=windows
3030
mv build/chesseract.exe build/chesseract-windows-x64.exe
3131
3232
- name: Run tests again, just to be sure

0 commit comments

Comments
 (0)