mirror of
https://github.com/actions/upload-artifact.git
synced 2026-04-10 17:38:27 +01:00
Update the TOC and remove a section
This commit is contained in:
14
README.md
14
README.md
@@ -11,15 +11,14 @@ Upload [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/st
|
|||||||
See also [download-artifact](https://github.com/actions/download-artifact).
|
See also [download-artifact](https://github.com/actions/download-artifact).
|
||||||
|
|
||||||
- [`@actions/upload-artifact`](#actionsupload-artifact)
|
- [`@actions/upload-artifact`](#actionsupload-artifact)
|
||||||
- [v6 - What's new](#v6---whats-new)
|
- [What's new](#whats-new)
|
||||||
- [v4 - What's new](#v4---whats-new)
|
- [GHES Support](#ghes-support)
|
||||||
- [Improvements](#improvements)
|
|
||||||
- [Breaking Changes](#breaking-changes)
|
|
||||||
- [Usage](#usage)
|
- [Usage](#usage)
|
||||||
- [Inputs](#inputs)
|
- [Inputs](#inputs)
|
||||||
- [Outputs](#outputs)
|
- [Outputs](#outputs)
|
||||||
- [Examples](#examples)
|
- [Examples](#examples)
|
||||||
- [Upload an Individual File](#upload-an-individual-file)
|
- [Upload an Individual File (Zipped)](#upload-an-individual-file-zipped)
|
||||||
|
- [Upload an Individual File (Unzipped)](#upload-an-individual-file-unzipped)
|
||||||
- [Upload an Entire Directory](#upload-an-entire-directory)
|
- [Upload an Entire Directory](#upload-an-entire-directory)
|
||||||
- [Upload using a Wildcard Pattern](#upload-using-a-wildcard-pattern)
|
- [Upload using a Wildcard Pattern](#upload-using-a-wildcard-pattern)
|
||||||
- [Upload using Multiple Paths and Exclusions](#upload-using-multiple-paths-and-exclusions)
|
- [Upload using Multiple Paths and Exclusions](#upload-using-multiple-paths-and-exclusions)
|
||||||
@@ -34,7 +33,6 @@ See also [download-artifact](https://github.com/actions/download-artifact).
|
|||||||
- [Overwriting an Artifact](#overwriting-an-artifact)
|
- [Overwriting an Artifact](#overwriting-an-artifact)
|
||||||
- [Limitations](#limitations)
|
- [Limitations](#limitations)
|
||||||
- [Number of Artifacts](#number-of-artifacts)
|
- [Number of Artifacts](#number-of-artifacts)
|
||||||
- [Zip archives](#zip-archives)
|
|
||||||
- [Permission Loss](#permission-loss)
|
- [Permission Loss](#permission-loss)
|
||||||
- [Where does the upload go?](#where-does-the-upload-go)
|
- [Where does the upload go?](#where-does-the-upload-go)
|
||||||
|
|
||||||
@@ -461,10 +459,6 @@ Within an individual job, there is a limit of 500 artifacts that can be created
|
|||||||
|
|
||||||
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.
|
||||||
|
|
||||||
### Zip archives
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
### Permission Loss
|
### Permission Loss
|
||||||
|
|
||||||
File permissions are not maintained during zipped 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 with `archive: true`, post-download the file is no longer guaranteed to be set as an executable.
|
File permissions are not maintained during zipped 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 with `archive: true`, post-download the file is no longer guaranteed to be set as an executable.
|
||||||
|
|||||||
Reference in New Issue
Block a user