From b2dcba71bb00d9d9c2fb96c64395c5f17f8cd587 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 29 Jul 2020 14:16:01 +0200 Subject: [PATCH] Update README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 9de1520..59571dc 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,15 @@ steps: working-directory: path/to/artifact ``` +Basic tilde expansion is supported for the `path` input + +```yaml + - uses: actions/download-artifact@v2 + with: + name: my-artifact + path: ~/download/path +``` + ## Compatibility between `v1` and `v2` When using `download-artifact@v1`, a directory denoted by the name of the artifact would be created if the `path` input was not provided. All of the contents would be downloaded to this directory.