From 595de31fd3efd058a2ba395a74fff9d5cb79b46a Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Sat, 26 Oct 2024 01:23:48 -0400 Subject: [PATCH] CI: Build using yarn dist --next (rather than without the --next flag) Want to build "-next" bins, not vanilla Pulsar bins. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91fe79ac82..22d4770e71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -146,7 +146,7 @@ jobs: timeout_minutes: 45 max_attempts: 3 retry_on: error - command: yarn dist + command: yarn dist --next - name: Build Pulsar Binaries (macOS) (Unsigned) if: ${{ runner.os == 'macOS' && github.event_name != 'push' }} @@ -155,7 +155,7 @@ jobs: timeout_minutes: 45 max_attempts: 3 retry_on: error - command: yarn dist + command: yarn dist --next - name: Build Pulsar Binaries if: ${{ runner.os != 'macOS' }} @@ -164,7 +164,7 @@ jobs: timeout_minutes: 30 max_attempts: 3 retry_on: error - command: yarn dist + command: yarn dist --next - name: Rename Pulsar Binaries for Regular release (Linux) if: ${{ runner.os == 'Linux' }}