Files
docs/docs/usage/actions/artifacts.md
T
2026-08-30 14:23:03 +02:00

1.4 KiB

date, slug, sidebar_position
date slug sidebar_position
2026-08-30T00:00:00+02:00 artifacts 70

Artifacts

Workflow runs can store files such as test results, coverage reports, and build output as artifacts. Artifacts are uploaded by workflows, for example with actions/upload-artifact, and appear on the run page after the upload completes.

Previewing artifacts

Select an artifact on the run page to open its file browser and preview in a new tab. The preview identifies the originating run and attempt, and provides links back to that run and to download the complete artifact. Selecting files in the browser updates the preview in the same tab.

Artifact previews:

  • are available only to signed-in users who can access the Actions run;
  • render text-based files and PDFs;
  • run HTML and JavaScript content in a sandboxed frame; and
  • label the rendered content as automatically generated by Gitea Actions.

Unsupported or oversized files can still be downloaded with the complete artifact.

Instance configuration

Site administrators can limit the total artifact size that can be browsed or previewed with ARTIFACT_PREVIEW_MAX_SIZE in the [actions] section of app.ini. The default is 10 MiB. Set it to 0 to disable previews or -1 to allow artifacts of any size.

The size of an individual previewed file is also limited by MAX_DISPLAY_FILE_SIZE in the [ui] section.