Skip to content

Commit

Permalink
fix: fix release workflow scripts && update release version in readme (
Browse files Browse the repository at this point in the history
…#7649)

As the title.

Approved-By: lmatz
Approved-By: BugenZhao
  • Loading branch information
huangjw806 authored Feb 1, 2023
1 parent 3b5419f commit 2eea462
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ There are two ways to install RisingWave: use a pre-built package or compile fro

```shell
# Download the pre-built binary
wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.15/risingwave-v0.1.15-x86_64-unknown-linux.tar.gz
wget https://github.com/risingwavelabs/risingwave/releases/download/v0.1.16/risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
# Unzip the binary
tar xvf risingwave-v0.1.15-x86_64-unknown-linux.tar.gz
tar xvf risingwave-v0.1.16-x86_64-unknown-linux.tar.gz
# Start RisingWave in single-binary playground mode
./risingwave playground
```
Expand All @@ -33,7 +33,7 @@ tar xvf risingwave-v0.1.15-x86_64-unknown-linux.tar.gz

```shell
# Start RisingWave in single-binary playground mode
docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.15 playground
docker run -it --pull=always -p 4566:4566 -p 5691:5691 ghcr.io/risingwavelabs/risingwave:v0.1.16 playground
```

**Compile from Source with [RiseDev](docs/developer-guide.md#set-up-the-development-environment) (Linux and macOS)**
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -euo pipefail

echo "--- Check env"
if [ "${BUILDKITE_SOURCE}" != "schedule" ] && [[ -z "${BINARY_NAME+x}" ]]; then
if [ "${BUILDKITE_SOURCE}" != "schedule" ] && [ "${BUILDKITE_SOURCE}" != "webhook" ] && [[ -z "${BINARY_NAME+x}" ]]; then
exit 0
fi

Expand Down
1 change: 1 addition & 0 deletions ci/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ steps:
environment:
- GITHUB_TOKEN
- BUILDKITE_TAG
- BUILDKITE_SOURCE
timeout_in_minutes: 60
retry: *auto-retry

Expand Down

0 comments on commit 2eea462

Please sign in to comment.