mirror of
https://github.com/actions/upload-artifact.git
synced 2025-06-19 17:57:15 +02:00
Compare commits
6 Commits
v4.3.0
...
eggyhead/r
Author | SHA1 | Date | |
---|---|---|---|
f8d6a4c74d | |||
3a8048248f | |||
9d63e3f2f8 | |||
dfa1ab292d | |||
d00351bf69 | |||
707f5a7b71 |
@ -408,7 +408,7 @@ jobs:
|
|||||||
|
|
||||||
### Number of Artifacts
|
### Number of Artifacts
|
||||||
|
|
||||||
Within an individual job, there is a limit of 10 artifacts that can be created for that job.
|
Within an individual job, there is a limit of 500 artifacts that can be created for that job.
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
68951
dist/merge/index.js
vendored
68951
dist/merge/index.js
vendored
File diff suppressed because one or more lines are too long
68741
dist/upload/index.js
vendored
68741
dist/upload/index.js
vendored
File diff suppressed because one or more lines are too long
@ -33,6 +33,7 @@ jobs:
|
|||||||
- name: Download All Artifacts
|
- name: Download All Artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
name: my-artifact
|
||||||
path: my-artifact
|
path: my-artifact
|
||||||
- run: ls -R my-artifact
|
- run: ls -R my-artifact
|
||||||
```
|
```
|
||||||
@ -73,6 +74,7 @@ jobs:
|
|||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
+ uses: actions/download-artifact@v4
|
+ uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
- name: my-artifact
|
||||||
path: my-artifact
|
path: my-artifact
|
||||||
+ pattern: my-artifact-*
|
+ pattern: my-artifact-*
|
||||||
+ merge-multiple: true
|
+ merge-multiple: true
|
||||||
|
Reference in New Issue
Block a user