Compare commits

...

5 commits

Author SHA1 Message Date
Erik Engi
e3f280d3c3
Merge 6a141eeea0 into 6027e3dd17 2025-03-30 16:53:13 +05:30
Rob Herley
6027e3dd17
Merge pull request #681 from GhadimiR/patch-1
Some checks failed
Code scanning - action / CodeQL-Build (push) Failing after 1s
Licensed / Check licenses (push) Failing after 2s
Update README.md
2025-03-25 09:24:05 -04:00
Ryan Ghadimi
d7079ed267
Merge branch 'main' into patch-1 2025-03-25 09:29:28 +00:00
Ryan Ghadimi
99ec7df36b
Update README.md 2025-03-14 15:03:00 +00:00
Erik Engi
6a141eeea0
Document relative paths rooted against workspace
same as https://github.com/actions/upload-artifact/pull/318
2023-12-16 19:44:05 +01:00

View file

@ -186,7 +186,7 @@ would be flattened and uploaded as =>
If multiple paths are provided as input, the least common ancestor of all the search paths will be used as the root directory of the artifact. Exclude paths do not affect the directory structure. If multiple paths are provided as input, the least common ancestor of all the search paths will be used as the root directory of the artifact. Exclude paths do not affect the directory structure.
Relative and absolute file paths are both allowed. Relative paths are rooted against the current working directory. Paths that begin with a wildcard character should be quoted to avoid being interpreted as YAML aliases. Relative and absolute file paths are both allowed. Relative paths are rooted against the workspace. Paths that begin with a wildcard character should be quoted to avoid being interpreted as YAML aliases.
### Altering compressions level (speed v. size) ### Altering compressions level (speed v. size)
@ -473,8 +473,9 @@ If you must preserve permissions, you can `tar` all of your files together befor
At the bottom of the workflow summary page, there is a dedicated section for artifacts. Here's a screenshot of something you might see: At the bottom of the workflow summary page, there is a dedicated section for artifacts. Here's a screenshot of something you might see:
<img src="https://user-images.githubusercontent.com/16109154/103645952-223c6880-4f59-11eb-8268-8dca6937b5f9.png" width="700" height="300"> <img src="https://github.com/user-attachments/assets/bcb7120f-f445-4a3e-9596-77f85f7e0af0" width="700" height="300">
There is a trashcan icon that can be used to delete the artifact. This icon will only appear for users who have write permissions to the repository. There is a trashcan icon that can be used to delete the artifact. This icon will only appear for users who have write permissions to the repository.
The size of the artifact is denoted in bytes. The displayed artifact size denotes the size of the zip that `upload-artifact` creates during upload. The size of the artifact is denoted in bytes. The displayed artifact size denotes the size of the zip that `upload-artifact` creates during upload. The Digest column will display the SHA256 digest of the artifact being uploaded.