diff options
author | Valery Piashchynski <[email protected]> | 2022-07-26 02:08:50 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-07-26 02:08:50 +0200 |
commit | eab1299ae453e148d3feca98366282c17863f912 (patch) | |
tree | 0e6d4d9b87b0a0d0186f68d68d631c07fc8c2429 /.github/workflows/release.yml | |
parent | 71c427d90f161cb8b00b448bf233987bfa2cee4c (diff) |
kafka: remove from the beta.2
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30faad75..64ab21bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,31 +22,26 @@ jobs: compiler: gcc archiver: tar arch: amd64 - tags: '' # ----- - os: linux compiler: gcc archiver: tar arch: arm64 - tags: '' # ----- - os: darwin compiler: gcc archiver: tar arch: arm64 - tags: '' # ----- - os: freebsd compiler: gcc archiver: tar arch: amd64 - tags: '' # ----- - os: '' compiler: musl-gcc # more info: <https://musl.libc.org/> archiver: zip arch: amd64 - tags: -tags musl steps: - name: Set up Go uses: actions/setup-go@v3 @@ -90,13 +85,13 @@ jobs: CC: ${{ matrix.compiler }} GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} GPG_PASS: ${{secrets.GPG_PASS}} - CGO_ENABLED: 1 + CGO_ENABLED: 0 LDFLAGS: >- -s -X github.com/roadrunner-server/roadrunner/v2/internal/meta.version=${{ steps.values.outputs.version }} -X github.com/roadrunner-server/roadrunner/v2/internal/meta.buildTime=${{ steps.values.outputs.timestamp }} run: | - go build ${{ matrix.tags }} -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr + go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr stat "./${{ steps.values.outputs.binary-name }}" gpg --detach-sign --armor "./${{ steps.values.outputs.binary-name }}" |