Skip to content

Commit

Permalink
CI: Build using yarn dist --next (rather than without the --next flag)
Browse files Browse the repository at this point in the history
Want to build "-next" bins, not vanilla Pulsar bins.
  • Loading branch information
DeeDeeG committed Oct 26, 2024
1 parent 63f9786 commit 595de31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -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' }}
Expand All @@ -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' }}
Expand Down

0 comments on commit 595de31

Please sign in to comment.