Skip to content

Commit a804544

Browse files
committed
Fix inconsistencies in README file
1 parent 3eadd8b commit a804544

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ See also [download-artifact](https://github.com/actions/download-artifact).
3131
- [Example output between steps](#example-output-between-steps)
3232
- [Example output between jobs](#example-output-between-jobs)
3333
- [Overwriting an Artifact](#overwriting-an-artifact)
34+
- [Uploading Hidden Files](#uploading-hidden-files)
3435
- [Limitations](#limitations)
3536
- [Number of Artifacts](#number-of-artifacts)
3637
- [Zip archives](#zip-archives)
@@ -59,12 +60,8 @@ There is also a new sub-action, `actions/upload-artifact/merge`. For more info,
5960
### Breaking Changes
6061

6162
1. On self hosted runners, additional [firewall rules](https://github.com/actions/toolkit/tree/main/packages/artifact#breaking-changes) may be required.
62-
2. Uploading to the same named Artifact multiple times.
63-
64-
Due to how Artifacts are created in this new version, it is no longer possible to upload to the same named Artifact multiple times. You must either split the uploads into multiple Artifacts with different names, or only upload once. Otherwise you _will_ encounter an error.
65-
66-
3. Limit of Artifacts for an individual job. Each job in a workflow run now has a limit of 500 artifacts.
67-
4. With `v4.4` and later, hidden files are excluded by default.
63+
2. Limit of Artifacts for an individual job. Each job in a workflow run now has a limit of 500 artifacts.
64+
3. With `v4.4` and later, hidden files are excluded by default.
6865

6966
For assistance with breaking changes, see [MIGRATION.md](docs/MIGRATION.md).
7067

@@ -118,9 +115,9 @@ For assistance with breaking changes, see [MIGRATION.md](docs/MIGRATION.md).
118115
119116
### Outputs
120117
121-
| Name | Description | Example |
122-
| - | - | - |
123-
| `artifact-id` | GitHub ID of an Artifact, can be used by the REST API | `1234` |
118+
| Name | Description | Example |
119+
| -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
120+
| `artifact-id` | GitHub ID of an Artifact, can be used by the REST API | `1234` |
124121
| `artifact-url` | URL to download an Artifact. Can be used in many scenarios such as linking to artifacts in issues or pull requests. Users must be logged-in in order for this URL to work. This URL is valid as long as the artifact has not expired or the artifact, run or repository have not been deleted | `https://github.com/example-org/example-repo/actions/runs/1/artifacts/1234` |
125122

126123
## Examples

0 commit comments

Comments
 (0)