Fix incorrect syntax in environment variable setup in go.yml

- .github/workflows/go.yml
  - Corrected syntax for appending `CGO_ENABLED=0` to `$GITHUB_ENV`.
This commit is contained in:
2025-08-07 21:26:30 +01:00
parent 19e265bf39
commit 8d61b8e44c

View File

@@ -22,7 +22,7 @@ jobs:
go-version: '1.24'
- name: Set env
run: echo "CGO_ENABLED=0 >> $GITHUB_ENV
run: echo "CGO_ENABLED=0" >> $GITHUB_ENV
- name: Build
run: go build -v ./...