Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Apr 24, 2024
1 parent 7376380 commit 71f916d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 71f916d

Please sign in to comment.