Add support for 32-bit Linux i386.
This commit is contained in:
parent
357f48b4ae
commit
e7ea317425
1 changed files with 2 additions and 0 deletions
|
@ -23,6 +23,8 @@ jobs:
|
|||
cache: false
|
||||
- name: release-build-linux-amd64
|
||||
run: GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/opendtu-logger-${{ github.ref_name }}-linux-amd64
|
||||
- name: release-build-linux-386
|
||||
run: GOOS=linux GOARCH=386 go build -v -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/opendtu-logger-${{ github.ref_name }}-linux-386
|
||||
- name: release-build-linux-arm64
|
||||
run: GOOS=linux GOARCH=arm64 go build -v -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/opendtu-logger-${{ github.ref_name }}-linux-arm64
|
||||
- name: release-build-windows-amd64
|
||||
|
|
Loading…
Reference in a new issue