diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e01f89..5a2e67f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,32 +27,26 @@ jobs: - name: Build and pack neargo for Linux run: | GOOS=linux GOARCH=amd64 go build . - cp .target/neargo neargo tar -czf neargo-linux-amd64.tar.gz neargo - name: Build and pack neargo for Linux ARMv7 run: | GOOS=linux GOARCH=arm GOARM=7 go build . - cp .target/neargo neargo tar -czf neargo-linux-armv7.tar.gz neargo - name: Build and pack neargo for Linux ARM64 run: | GOOS=linux GOARCH=arm64 go build . - cp .target/neargo neargo tar -czf neargo-linux-arm64.tar.gz neargo - name: Build and pack neargo for macOS run: | GOOS=darwin GOARCH=amd64 go build . - cp .target/neargo neargo tar -czf neargo-macos-amd64.tar.gz neargo - name: Build and pack neargo for macOS ARM64 (M1) run: | GOOS=darwin GOARCH=arm64 go build . - cp .target/neargo neargo tar -czf neargo-macos-arm64.tar.gz neargo - name: Build and pack neargo for Windows run: | GOOS=windows GOARCH=amd64 go build . - cp .target/neargo.exe neargo.exe zip neargo-windows-amd64.zip neargo.exe - name: Get the version