diff --git a/README.md b/README.md index 6c542ec..0b563ed 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,17 @@ jobs: - name: Run this action uses: gacts/run-and-post-run@v1 with: - run: echo "First run" - post: echo "First post" + run: echo "First" + "(can be multiline)" + post: | + echo "First post" + echo "(can run multiply commands)" - name: Run this action with only post uses: gacts/run-and-post-run@v1 with: post: echo "Second post" + ``` This above configuration will produce the following: diff --git a/docs/ci-example.png b/docs/ci-example.png index 5101a21..5241a25 100644 Binary files a/docs/ci-example.png and b/docs/ci-example.png differ