From ce22ce1c3e5b8c02604212469b361cabd2228cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sindre=20B=C3=B8yum?= Date: Fri, 7 Jan 2022 10:22:23 +0100 Subject: [PATCH] document `working-directory` option --- README.md | 2 +- action.yml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dcf2ce9..ba0bb31c 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ jobs: | Name | Required | Default value | Description | |---|---|---|---| | `h5p-dependency-list-file` | false | `build_info/repos` | The file where dependency Git URIs are found. Must be omitted if the file does not exist. | -| `working-directory` | false | `` | The directory where `library.json` is found. | +| `working-directory` | false | `.` | The directory where `library.json` is found. | ## Outputs diff --git a/action.yml b/action.yml index 45530a26..4fefee47 100644 --- a/action.yml +++ b/action.yml @@ -12,6 +12,11 @@ inputs: default: build_info/repos required: false + working-directory: + description: The directory where `library.json` is found. + default: "." + required: false + runs: using: node12 main: dist/index.js