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
+23
Original file line number
Diff line number
Diff line change
@@ -237,6 +237,29 @@ Artifacts are retained for 90 days by default. You can specify a shorter retenti
237
237
238
238
The retention period must be between 1 and 90 inclusive. For more information see [artifact and log retention policies](https://docs.github.com/en/free-pro-team@latest/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy).
239
239
240
+
241
+
### Hidden Files
242
+
243
+
By default, hidden files are ignored by this action to avoid unintentionally uploading sensitive information.
244
+
245
+
In versions of this action before v3.2.0, these hidden files were included by default.
246
+
247
+
If you need to upload hidden files, you can use the `include-hidden-files` input.
248
+
249
+
```yaml
250
+
jobs:
251
+
upload:
252
+
runs-on: ubuntu-latest
253
+
steps:
254
+
- name: Create a Hidden File
255
+
run: echo "hello from a hidden file" > .hidden-file.txt
256
+
- name: Upload Artifact
257
+
uses: actions/upload-artifact@v3
258
+
with:
259
+
path: .hidden-file.txt
260
+
include-hidden-files: true
261
+
```
262
+
240
263
## Where does the upload go?
241
264
242
265
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