From 1162c7468ea0fee15d853a92e31ae4f0d47797b0 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Thu, 30 Apr 2020 21:55:12 +0200 Subject: [PATCH] Update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3539f28..ebd1a43 100644 --- a/README.md +++ b/README.md @@ -47,16 +47,16 @@ steps: ## Compatibility between `v1` and `v2` -When using `download-artifact@v1`, a directory denoted by the name of the artifact would be created. All of the contents would ne downloaded to this directory. +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. ``` - path/to/artifact/ + current/working/directory/ my-artifact/ ... contents of my-artifact ``` -With `v2`, there is no longer an extra directory that is created. All the contents are downloaded to the current working directory or to `path` if specified. +With `v2`, there is no longer an extra directory that is created if the `path` input is not provided. All the contents are downloaded to the current working directory. ``` - path/to/artifact/ + current/working/directory/ ... contents of my-artifact ```