remove symbols in release package

This commit is contained in:
Brannon King 2021-08-19 17:57:28 -04:00
parent ca18f3e8a2
commit d2f8ad7657

View file

@ -30,13 +30,14 @@ jobs:
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.ar }}
run: go build -trimpath -o artifacts/ .
CGO_ENABLED: 0
run: go build -trimpath -ldflags="-s -w -buildid=" -v -o artifacts/ .
- name: SHA256 sum
run: sha256sum -b artifacts/* > artifacts/lbcd.sha256
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: lbcd-${{ matrix.os }}
name: lbcd-${{ matrix.os }}-${{ matrix.ar }}
path: artifacts/*