From a48c80beab6523b082f33307a278dff9aa34b042 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:12:41 +0000 Subject: [PATCH] docs: update actions and workflows documentation [skip ci] Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dc0dcd8..2105c69 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,11 @@ This action runs your docker-compose file and clean up before action finished # # Default: compose-flags: "" + + # Description: Current working directory + # + # Default: ${{ github.workspace }} + cwd: "" ``` @@ -60,13 +65,14 @@ This action runs your docker-compose file and clean up before action finished -| **Input** | **Description** | **Default** | **Required** | -| -------------------------- | ----------------------------------------------------------------------- | --------------------------------- | ------------ | -| compose-file | Relative path to compose file(s). It can be a list of files. | ./docker-compose.yml | **false** | -| services | Services to perform docker-compose up. | | **false** | -| up-flags | Additional options to pass to docker-compose up command. | | **false** | -| down-flags | Additional options to pass to docker-compose down command. | | **false** | -| compose-flags | Additional options to pass to docker-compose command. | | **false** | +| **Input** | **Description** | **Default** | **Required** | +| -------------------------- | ----------------------------------------------------------------------- | ------------------------------------ | ------------ | +| compose-file | Relative path to compose file(s). It can be a list of files. | ./docker-compose.yml | **false** | +| services | Services to perform docker-compose up. | | **false** | +| up-flags | Additional options to pass to docker-compose up command. | | **false** | +| down-flags | Additional options to pass to docker-compose down command. | | **false** | +| compose-flags | Additional options to pass to docker-compose command. | | **false** | +| cwd | Current working directory | ${{ github.workspace }} | **false** |