From 2ac38c53673fc429393665537e3706e2cb2e7c09 Mon Sep 17 00:00:00 2001 From: Will Ryan Date: Wed, 11 Oct 2023 10:20:01 -0700 Subject: [PATCH] Update additional "uses: actions/upload-artifact" lines with v1.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 036e6db..f61510b 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Whether to add subdirectories to simply zip all files to the root. If for example, you do the following: ```yaml -- uses: vimtor/action-zip@v1 +- uses: vimtor/action-zip@v1.1 with: files: dist/ manifest.json recursive: false @@ -67,7 +67,7 @@ Also if you want a nested file at the root, `recursive: true` is your guy. If you want to check that the output is the desired one I recommend you to add the following step after zipping. You will be able to download the `result.zip` file. ```yaml -- uses: actions/upload-artifact@v1 +- uses: actions/upload-artifact@v1.1 with: name: my-artifact path: ${{ github.workspace }}/result.zip