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** |