Skip to content

Commit

Permalink
update readme with section
Browse files Browse the repository at this point in the history
  • Loading branch information
SrRyan authored Aug 22, 2024
1 parent afc7e4a commit d99c5ec
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,29 @@ Artifacts are retained for 90 days by default. You can specify a shorter retenti

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).


### Hidden Files

By default, hidden files are ignored by this action to avoid unintentionally uploading sensitive information.

In versions of this action before v3.2.0, these hidden files were included by default.

If you need to upload hidden files, you can use the `include-hidden-files` input.

```yaml
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Create a Hidden File
run: echo "hello from a hidden file" > .hidden-file.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
path: .hidden-file.txt
include-hidden-files: true
```

## Where does the upload go?

At the bottom of the workflow summary page, there is a dedicated section for artifacts. Here's a screenshot of something you might see:
Expand Down

0 comments on commit d99c5ec

Please sign in to comment.