Update additional "uses: actions/upload-artifact" lines with v1.1

This commit is contained in:
Will Ryan 2023-10-11 10:20:01 -07:00 committed by GitHub
parent 6902d60227
commit 2ac38c5367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ Whether to add subdirectories to simply zip all files to the root.
If for example, you do the following: If for example, you do the following:
```yaml ```yaml
- uses: vimtor/action-zip@v1 - uses: vimtor/action-zip@v1.1
with: with:
files: dist/ manifest.json files: dist/ manifest.json
recursive: false 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. 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 ```yaml
- uses: actions/upload-artifact@v1 - uses: actions/upload-artifact@v1.1
with: with:
name: my-artifact name: my-artifact
path: ${{ github.workspace }}/result.zip path: ${{ github.workspace }}/result.zip