From 71f916deb6134a64ec6df7bf6100b5a878e58e8d Mon Sep 17 00:00:00 2001 From: Kexiang Wang Date: Wed, 24 Apr 2024 15:24:27 -0400 Subject: [PATCH] tmp --- .github/workflows/standalone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/standalone.yml diff --git a/.github/workflows/standalone.yml b/.github/workflows/standalone.yml new file mode 100644 index 0000000000000..2b6befb0df346 --- /dev/null +++ b/.github/workflows/standalone.yml @@ -0,0 +1,23 @@ +name: Example with Custom ENTRYPOINT and CMD + +on: + pull_request: + types: [opened, edited, labeled] + +jobs: + custom-entrypoint-cmd-job: + runs-on: ubuntu-latest + container: + image: ghcr.io/risingwavelabs/risingwave:v1.8.1 + ports: + - 4566:4566 + options: >- + --entrypoint "/risingwave/bin/risingwave" + -- single_node + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Run custom command + run: | + echo "Running with custom ENTRYPOINT and CMD" \ No newline at end of file