fixed stupid indentation
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Nils Stinnesbeck 2021-01-02 22:24:27 +01:00
parent 4ef4f653a8
commit 2fd147b44f

View File

@ -11,31 +11,31 @@ name: build go
steps: &steps steps: &steps
- name: build linux/amd64 - name: build linux/amd64
<<: *env <<: *env
environment: environment:
GOARCH: amd64 GOARCH: amd64
GOOS: linux GOOS: linux
- name: build linux/arm64 - name: build linux/arm64
<<: *env <<: *env
environment: environment:
GOARCH: arm64 GOARCH: arm64
GOOS: linux GOOS: linux
- name: build windows - name: build windows
<<: *env <<: *env
environment: environment:
GOARCH: amd64 GOARCH: amd64
GOOS: windows GOOS: windows
- name: build macos/x64 - name: build macos/x64
<<: *env <<: *env
environment: environment:
GOARCH: amd64 GOARCH: amd64
GOOS: darwin GOOS: darwin
- name: build macos/arm64 - name: build macos/arm64
<<: *env <<: *env
environment: environment:
GOARCH: arm64 GOARCH: arm64
GOOS: darwin GOOS: darwin