You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+33
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,10 @@ See also [download-artifact](https://github.com/actions/download-artifact).
24
24
-[Using Outputs](#using-outputs)
25
25
-[Example output between steps](#example-output-between-steps)
26
26
-[Example output between jobs](#example-output-between-jobs)
27
+
-[Limitations](#limitations)
28
+
-[Number of Artifacts](#number-of-artifacts)
29
+
-[Zip archives](#zip-archives)
30
+
-[Permission Loss](#permission-loss)
27
31
-[Where does the upload go?](#where-does-the-upload-go)
28
32
29
33
@@ -358,6 +362,35 @@ jobs:
358
362
run: echo "Artifact ID from previous job is $OUTPUT1"
359
363
```
360
364
365
+
## Limitations
366
+
367
+
### Number of Artifacts
368
+
369
+
Within an individual job, there is a limit of 10 artifacts that can be created for that job.
370
+
371
+
You may also be limited by Artifacts if you have exceeded your shared storage quota. Storage is calculated every 6-12 hours. See [the documentation](https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending) for more info.
372
+
373
+
### Zip archives
374
+
375
+
When an Artifact is uploaded, all the files are assembled into an immutable Zip archive. There is currently no way to download artifacts in a format other than a Zip or to download individual artifact contents.
376
+
377
+
### Permission Loss
378
+
379
+
File permissions are not maintained during artifact upload. All directories will have `755` and all files will have `644`. For example, if you make a file executable using `chmod` and then upload that file, post-download the file is no longer guaranteed to be set as an executable.
380
+
381
+
If you must preserve permissions, you can `tar` all of your files together before artifact upload. Post download, the `tar` file will maintain file permissions and case sensitivity.
382
+
383
+
```yaml
384
+
- name: 'Tar files'
385
+
run: tar -cvf my_files.tar /path/to/my/directory
386
+
387
+
- name: 'Upload Artifact'
388
+
uses: actions/upload-artifact@v4
389
+
with:
390
+
name: my-artifact
391
+
path: my_files.tar
392
+
```
393
+
361
394
## Where does the upload go?
362
395
363
396
At the bottom of the workflow summary page, there is a dedicated section for artifacts. Here's a screenshot of something you might see:
0 commit comments